pub enum AdoResourcesRepositoryRef<P = UseParameter<String>> {
Fixed(String),
Parameter(P),
}
Expand description
ADO repository ref
Variants§
Fixed(String)
Hard-coded ref (e.g: refs/heads/main)
Parameter(P)
Connected to pipeline-level parameter
Trait Implementations§
Auto Trait Implementations§
impl<P> Freeze for AdoResourcesRepositoryRef<P>where
P: Freeze,
impl<P> RefUnwindSafe for AdoResourcesRepositoryRef<P>where
P: RefUnwindSafe,
impl<P> Send for AdoResourcesRepositoryRef<P>where
P: Send,
impl<P> Sync for AdoResourcesRepositoryRef<P>where
P: Sync,
impl<P> Unpin for AdoResourcesRepositoryRef<P>where
P: Unpin,
impl<P> UnwindSafe for AdoResourcesRepositoryRef<P>where
P: UnwindSafe,
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