pub struct TestRunSummary {
pub results: Vec<TestResult>,
pub passed: usize,
pub failed: usize,
}Expand description
Summary of running all test blocks.
Fields§
§results: Vec<TestResult>§passed: usize§failed: usizeTrait Implementations§
Source§impl Debug for TestRunSummary
impl Debug for TestRunSummary
Auto Trait Implementations§
impl Freeze for TestRunSummary
impl RefUnwindSafe for TestRunSummary
impl Send for TestRunSummary
impl Sync for TestRunSummary
impl Unpin for TestRunSummary
impl UnwindSafe for TestRunSummary
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