pub enum TracedOutcome {
Completed,
Skipped {
reason: Option<String>,
},
Terminated {
reason: String,
},
Failed {
message: String,
},
}Expand description
Final outcome recorded for one invocation.
Variants§
Completed
The tool body ran and produced a result.
Skipped
A hook synthesised a skip result.
Terminated
A hook stopped the dispatch loop.
Failed
The tool body or a hook returned an error.
Trait Implementations§
Source§impl Clone for TracedOutcome
impl Clone for TracedOutcome
Source§fn clone(&self) -> TracedOutcome
fn clone(&self) -> TracedOutcome
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 TracedOutcome
impl Debug for TracedOutcome
Source§impl PartialEq for TracedOutcome
impl PartialEq for TracedOutcome
Source§fn eq(&self, other: &TracedOutcome) -> bool
fn eq(&self, other: &TracedOutcome) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for TracedOutcome
Auto Trait Implementations§
impl Freeze for TracedOutcome
impl RefUnwindSafe for TracedOutcome
impl Send for TracedOutcome
impl Sync for TracedOutcome
impl Unpin for TracedOutcome
impl UnsafeUnpin for TracedOutcome
impl UnwindSafe for TracedOutcome
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