pub struct TestResults {
pub passed: Vec<TestEvent>,
pub failed: Vec<TestEvent>,
pub ignored: Vec<TestEvent>,
pub suite_info: Option<TestEvent>,
pub errors: Vec<String>,
pub raw_lines: Vec<String>,
}Expand description
Parsed test results
Fields§
§passed: Vec<TestEvent>§failed: Vec<TestEvent>§ignored: Vec<TestEvent>§suite_info: Option<TestEvent>§errors: Vec<String>§raw_lines: Vec<String>Trait Implementations§
Source§impl Debug for TestResults
impl Debug for TestResults
Source§impl Default for TestResults
impl Default for TestResults
Source§fn default() -> TestResults
fn default() -> TestResults
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for TestResults
impl RefUnwindSafe for TestResults
impl Send for TestResults
impl Sync for TestResults
impl Unpin for TestResults
impl UnsafeUnpin 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