pub enum StageStatus {
Pending,
InProgress,
Completed,
Skipped,
Failed,
}Expand description
Status of a pipeline stage.
Variants§
Pending
Stage not yet started.
InProgress
Stage currently in progress.
Completed
Stage completed successfully.
Skipped
Stage skipped (e.g., cache hit).
Failed
Stage failed with error.
Trait Implementations§
Source§impl Clone for StageStatus
impl Clone for StageStatus
Source§fn clone(&self) -> StageStatus
fn clone(&self) -> StageStatus
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 StageStatus
impl Debug for StageStatus
Source§impl Default for StageStatus
impl Default for StageStatus
Source§fn default() -> StageStatus
fn default() -> StageStatus
Returns the “default value” for a type. Read more
Source§impl PartialEq for StageStatus
impl PartialEq for StageStatus
Source§fn eq(&self, other: &StageStatus) -> bool
fn eq(&self, other: &StageStatus) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for StageStatus
impl Eq for StageStatus
impl StructuralPartialEq for StageStatus
Auto Trait Implementations§
impl Freeze for StageStatus
impl RefUnwindSafe for StageStatus
impl Send for StageStatus
impl Sync for StageStatus
impl Unpin for StageStatus
impl UnsafeUnpin for StageStatus
impl UnwindSafe for StageStatus
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.