pub struct AdoResourcesRepository {
pub repo_type: AdoResourcesRepositoryType,
pub name: String,
pub git_ref: AdoResourcesRepositoryRef,
pub endpoint: Option<String>,
}
Expand description
ADO repository resource.
Fields§
§repo_type: AdoResourcesRepositoryType
Type of repo that is being connected to.
name: String
Repository name. Format depends on repo_type
.
git_ref: AdoResourcesRepositoryRef
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 AdoResourcesRepository
impl RefUnwindSafe for AdoResourcesRepository
impl Send for AdoResourcesRepository
impl Sync for AdoResourcesRepository
impl Unpin for AdoResourcesRepository
impl UnwindSafe for AdoResourcesRepository
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