pub enum GraphStepStatus {
Pending,
Running,
Succeeded,
Failed,
Skipped,
}Variants§
Pending
Running
Succeeded
Failed
Skipped
A when condition the runtime resolved to false selected this step out;
it never runs and counts as terminal for graph-completion purposes.
Trait Implementations§
Source§impl Clone for GraphStepStatus
impl Clone for GraphStepStatus
Source§fn clone(&self) -> GraphStepStatus
fn clone(&self) -> GraphStepStatus
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 GraphStepStatus
impl Debug for GraphStepStatus
Source§impl<'de> Deserialize<'de> for GraphStepStatus
impl<'de> Deserialize<'de> for GraphStepStatus
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 GraphStepStatus
Source§impl PartialEq for GraphStepStatus
impl PartialEq for GraphStepStatus
Source§fn eq(&self, other: &GraphStepStatus) -> bool
fn eq(&self, other: &GraphStepStatus) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for GraphStepStatus
impl Serialize for GraphStepStatus
impl StructuralPartialEq for GraphStepStatus
Auto Trait Implementations§
impl Freeze for GraphStepStatus
impl RefUnwindSafe for GraphStepStatus
impl Send for GraphStepStatus
impl Sync for GraphStepStatus
impl Unpin for GraphStepStatus
impl UnsafeUnpin for GraphStepStatus
impl UnwindSafe for GraphStepStatus
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