pub struct TestResults {
pub success_tests: Vec<TestResult>,
pub failed_tests: Vec<TestResult>,
pub start_up_duration: Duration,
pub tests_duration: Duration,
pub stop_duration: Duration,
}Fields§
§success_tests: Vec<TestResult>§failed_tests: Vec<TestResult>§start_up_duration: Duration§tests_duration: Duration§stop_duration: DurationAuto Trait Implementations§
impl Freeze for TestResults
impl RefUnwindSafe for TestResults
impl Send for TestResults
impl Sync for TestResults
impl Unpin for TestResults
impl UnwindSafe for TestResults
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