pub enum StepState {
Pending,
Running,
Retrying,
Completed,
Skipped,
Failed,
}Expand description
State of one pipeline step.
Variants§
Pending
A dependency has not completed yet.
Running
The step is currently executing.
Retrying
A retryable provider operation is waiting before another attempt.
Completed
The step completed successfully.
Skipped
The step was unnecessary for this input.
Failed
The step ended with an error.
Trait Implementations§
impl Copy for StepState
Source§impl<'de> Deserialize<'de> for StepState
impl<'de> Deserialize<'de> for StepState
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 StepState
impl StructuralPartialEq for StepState
Auto Trait Implementations§
impl Freeze for StepState
impl RefUnwindSafe for StepState
impl Send for StepState
impl Sync for StepState
impl Unpin for StepState
impl UnsafeUnpin for StepState
impl UnwindSafe for StepState
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