pub enum ReportOutcome {
Skipped {
reason: StageSkipReason,
},
Tested {
examples: Vec<ExampleOutcome>,
},
}Variants§
Skipped
Stage was skipped — no verdict.
Fields
§
reason: StageSkipReasonTested
Stage was tested. Individual example results live in examples.
Fields
§
examples: Vec<ExampleOutcome>Trait Implementations§
Source§impl Clone for ReportOutcome
impl Clone for ReportOutcome
Source§fn clone(&self) -> ReportOutcome
fn clone(&self) -> ReportOutcome
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 ReportOutcome
impl RefUnwindSafe for ReportOutcome
impl Send for ReportOutcome
impl Sync for ReportOutcome
impl Unpin for ReportOutcome
impl UnsafeUnpin for ReportOutcome
impl UnwindSafe for ReportOutcome
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