pub enum WillNotBeRunReason {
PreviousStepFailed {
step: StepKey,
},
ParentStepFailed {
step: StepKey,
},
PreviousStepAborted {
step: StepKey,
},
ParentAborted {
step: StepKey,
},
}Variants§
PreviousStepFailed
A preceding step failed.
ParentStepFailed
A parent step failed.
PreviousStepAborted
Execution was aborted during a previous step.
ParentAborted
A parent step was aborted.
Trait Implementations§
Source§impl Clone for WillNotBeRunReason
impl Clone for WillNotBeRunReason
Source§fn clone(&self) -> WillNotBeRunReason
fn clone(&self) -> WillNotBeRunReason
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for WillNotBeRunReason
impl RefUnwindSafe for WillNotBeRunReason
impl Send for WillNotBeRunReason
impl Sync for WillNotBeRunReason
impl Unpin for WillNotBeRunReason
impl UnsafeUnpin for WillNotBeRunReason
impl UnwindSafe for WillNotBeRunReason
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