pub enum Outcome {
Passed,
Failed(String),
Skipped(String),
}Expand description
What one check found.
Variants§
Passed
The executor satisfied the check.
Failed(String)
It did not, and this is what was expected instead.
Skipped(String)
The check did not run, and this is why. Never a pass: a report naming what it could not establish is the point of the variant.
Trait Implementations§
impl Eq for Outcome
impl StructuralPartialEq for Outcome
Auto Trait Implementations§
impl Freeze for Outcome
impl RefUnwindSafe for Outcome
impl Send for Outcome
impl Sync for Outcome
impl Unpin for Outcome
impl UnsafeUnpin for Outcome
impl UnwindSafe for Outcome
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