pub enum PipelineScope {
Running,
Pending,
Finished,
Branches,
Tags,
}Expand description
Scopes for pipelines.
Variants§
Running
Currently running.
Pending
Created, but blocked on available runners or triggers.
Finished
Completed pipelines.
Branches
Pipelines for branches.
Tags
Pipelines for tags.
Trait Implementations§
source§impl Clone for PipelineScope
impl Clone for PipelineScope
source§fn clone(&self) -> PipelineScope
fn clone(&self) -> PipelineScope
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 moresource§impl Debug for PipelineScope
impl Debug for PipelineScope
source§impl ParamValue<'static> for PipelineScope
impl ParamValue<'static> for PipelineScope
source§impl PartialEq<PipelineScope> for PipelineScope
impl PartialEq<PipelineScope> for PipelineScope
source§fn eq(&self, other: &PipelineScope) -> bool
fn eq(&self, other: &PipelineScope) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl Copy for PipelineScope
impl Eq for PipelineScope
impl StructuralEq for PipelineScope
impl StructuralPartialEq for PipelineScope
Auto Trait Implementations§
impl RefUnwindSafe for PipelineScope
impl Send for PipelineScope
impl Sync for PipelineScope
impl Unpin for PipelineScope
impl UnwindSafe for PipelineScope
Blanket Implementations§
source§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.