pub enum StepOutcomeKind {
Succeeded,
Skipped,
Waiting,
Failed,
Cancelled,
}Expand description
How a step ended.
Variants§
Succeeded
Terminal success.
Skipped
Filtered out.
Waiting
Parked on a wake condition.
Failed
Errored.
Cancelled
Cancelled.
Trait Implementations§
Source§impl Clone for StepOutcomeKind
impl Clone for StepOutcomeKind
Source§fn clone(&self) -> StepOutcomeKind
fn clone(&self) -> StepOutcomeKind
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 moreimpl Copy for StepOutcomeKind
Source§impl Debug for StepOutcomeKind
impl Debug for StepOutcomeKind
Source§impl<'de> Deserialize<'de> for StepOutcomeKind
impl<'de> Deserialize<'de> for StepOutcomeKind
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for StepOutcomeKind
Source§impl PartialEq for StepOutcomeKind
impl PartialEq for StepOutcomeKind
Source§impl Serialize for StepOutcomeKind
impl Serialize for StepOutcomeKind
impl StructuralPartialEq for StepOutcomeKind
Auto Trait Implementations§
impl Freeze for StepOutcomeKind
impl RefUnwindSafe for StepOutcomeKind
impl Send for StepOutcomeKind
impl Sync for StepOutcomeKind
impl Unpin for StepOutcomeKind
impl UnsafeUnpin for StepOutcomeKind
impl UnwindSafe for StepOutcomeKind
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