pub struct Tally {
pub passed: u64,
pub failed: u64,
pub ignored: u64,
}Expand description
Cargo-test-shaped counts summed across every test result: line in one
command’s output.
Fields§
§passed: u64§failed: u64§ignored: u64Trait Implementations§
impl Copy for Tally
impl Eq for Tally
impl StructuralPartialEq for Tally
Auto Trait Implementations§
impl Freeze for Tally
impl RefUnwindSafe for Tally
impl Send for Tally
impl Sync for Tally
impl Unpin for Tally
impl UnsafeUnpin for Tally
impl UnwindSafe for Tally
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