pub enum IgnoredVerdict {
Accounted {
ignored: u64,
},
Uncovered {
ignored: u64,
},
Mismatch {
ignored: u64,
covered: u64,
},
}Expand description
The verdict on one reconcile_ignored command’s ignored tests.
Variants§
Accounted
Every ignored test was executed by the declared coverer (or there were none to account for).
Uncovered
Tests were ignored and no command declared itself their coverer. This is the F62 shape exactly.
Mismatch
A coverer ran, but not the same number of tests that were ignored.
Implementations§
Source§impl IgnoredVerdict
impl IgnoredVerdict
Trait Implementations§
Source§impl Clone for IgnoredVerdict
impl Clone for IgnoredVerdict
Source§fn clone(&self) -> IgnoredVerdict
fn clone(&self) -> IgnoredVerdict
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 IgnoredVerdict
Source§impl Debug for IgnoredVerdict
impl Debug for IgnoredVerdict
impl Eq for IgnoredVerdict
Source§impl PartialEq for IgnoredVerdict
impl PartialEq for IgnoredVerdict
impl StructuralPartialEq for IgnoredVerdict
Auto Trait Implementations§
impl Freeze for IgnoredVerdict
impl RefUnwindSafe for IgnoredVerdict
impl Send for IgnoredVerdict
impl Sync for IgnoredVerdict
impl Unpin for IgnoredVerdict
impl UnsafeUnpin for IgnoredVerdict
impl UnwindSafe for IgnoredVerdict
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