pub struct TestStats {
pub total: usize,
pub passed: usize,
pub failed: usize,
pub skipped: usize,
pub total_duration: Duration,
}Fields§
§total: usize§passed: usize§failed: usize§skipped: usize§total_duration: DurationTrait Implementations§
impl Copy for TestStats
Auto Trait Implementations§
impl Freeze for TestStats
impl RefUnwindSafe for TestStats
impl Send for TestStats
impl Sync for TestStats
impl Unpin for TestStats
impl UnwindSafe for TestStats
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