pub struct InternalAdoResourcesRepository {
pub repo_id: String,
pub repo_type: AdoResourcesRepositoryType,
pub name: String,
pub git_ref: AdoResourcesRepositoryRef<usize>,
pub endpoint: Option<String>,
}Fields§
§repo_id: Stringflowey-generated unique repo identifier
repo_type: AdoResourcesRepositoryTypeType of repo that is being connected to.
name: StringRepository name. Format depends on repo_type.
git_ref: AdoResourcesRepositoryRef<usize>git ref to checkout.
endpoint: Option<String>(optional) ID of the service endpoint connecting to this repository.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for InternalAdoResourcesRepository
impl RefUnwindSafe for InternalAdoResourcesRepository
impl Send for InternalAdoResourcesRepository
impl Sync for InternalAdoResourcesRepository
impl Unpin for InternalAdoResourcesRepository
impl UnwindSafe for InternalAdoResourcesRepository
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more