pub enum StepOutcome {
Verified,
Executed,
Skipped,
Failed,
Refused,
}Expand description
What became of one step.
Variants§
Verified
Executed, and verification confirmed it.
Executed
Executed; verification was not requested. Reported distinctly from
Verified on purpose — “nothing errored” is not “it worked”.
Skipped
Not executed: an earlier step failed.
Failed
Executed but verification failed, or the step itself failed.
Refused
Not executed, on purpose: a guard said no. The kill switch, or a
point that wandered outside its own marked region. Reported apart
from Failed because “it did not work” and “I declined to try”
call for different responses — one may be worth retrying, the
other never is.
Implementations§
Trait Implementations§
Source§impl Clone for StepOutcome
impl Clone for StepOutcome
Source§fn clone(&self) -> StepOutcome
fn clone(&self) -> StepOutcome
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 StepOutcome
Source§impl Debug for StepOutcome
impl Debug for StepOutcome
Source§impl<'de> Deserialize<'de> for StepOutcome
impl<'de> Deserialize<'de> for StepOutcome
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 StepOutcome
Source§impl PartialEq for StepOutcome
impl PartialEq for StepOutcome
Source§impl Serialize for StepOutcome
impl Serialize for StepOutcome
impl StructuralPartialEq for StepOutcome
Auto Trait Implementations§
impl Freeze for StepOutcome
impl RefUnwindSafe for StepOutcome
impl Send for StepOutcome
impl Sync for StepOutcome
impl Unpin for StepOutcome
impl UnsafeUnpin for StepOutcome
impl UnwindSafe for StepOutcome
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.