pub struct Summary {
pub total: usize,
pub passed: usize,
pub failed: usize,
pub skipped: usize,
pub unknown: usize,
}Expand description
Aggregate counts over a set of rows.
Fields§
§total: usize§passed: usize§failed: usize§skipped: usize§unknown: usizeAuto Trait Implementations§
impl Freeze for Summary
impl RefUnwindSafe for Summary
impl Send for Summary
impl Sync for Summary
impl Unpin for Summary
impl UnsafeUnpin for Summary
impl UnwindSafe for Summary
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