pub enum PipelineBackendHint {
Local,
Ado,
Github,
}
Variants§
Local
Pipeline is being run on the user’s dev machine (via bash / direct run)
Ado
Pipeline is run on ADO
Github
Pipeline is run on GitHub Actions
Trait Implementations§
Source§impl Clone for PipelineBackendHint
impl Clone for PipelineBackendHint
Source§fn clone(&self) -> PipelineBackendHint
fn clone(&self) -> PipelineBackendHint
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreimpl Copy for PipelineBackendHint
Auto Trait Implementations§
impl Freeze for PipelineBackendHint
impl RefUnwindSafe for PipelineBackendHint
impl Send for PipelineBackendHint
impl Sync for PipelineBackendHint
impl Unpin for PipelineBackendHint
impl UnwindSafe for PipelineBackendHint
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