pub enum StepState {
NotReady,
Ready,
Running,
Complete,
}Expand description
One step’s lifecycle state.
Variants§
NotReady
A predecessor is incomplete.
Ready
All predecessors are complete.
Running
The step is running.
Complete
The step is complete.
Trait Implementations§
impl Copy for StepState
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