pub struct Counter {
pub num_skip: u32,
pub num_todo: u32,
pub num_pass: u32,
pub num_degraded: u32,
pub num_fail: u32,
pub num_panic: u32,
pub num_abort: u32,
}Expand description
Counts number of tests with a specific result
Fields§
§num_skip: u32§num_todo: u32§num_pass: u32§num_degraded: u32§num_fail: u32§num_panic: u32§num_abort: u32Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Counter
impl RefUnwindSafe for Counter
impl Send for Counter
impl Sync for Counter
impl Unpin for Counter
impl UnwindSafe for Counter
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