pub struct TestSummary {
pub total: usize,
pub passed: usize,
pub failed: usize,
pub file_results: Vec<FileTestResults>,
}Expand description
Summary of all test results
Fields§
§total: usizeTotal tests run
passed: usizeTests passed
failed: usizeTests failed
file_results: Vec<FileTestResults>Results by file
Trait Implementations§
Source§impl Debug for TestSummary
impl Debug for TestSummary
Source§impl Default for TestSummary
impl Default for TestSummary
Source§fn default() -> TestSummary
fn default() -> TestSummary
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for TestSummary
impl RefUnwindSafe for TestSummary
impl Send for TestSummary
impl Sync for TestSummary
impl Unpin for TestSummary
impl UnwindSafe for TestSummary
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