pub struct FailedTestInfo {
pub suite_name: String,
pub test_name: String,
pub error_message: Option<String>,
}Expand description
Information about a failed test.
Fields§
§suite_name: StringName of the suite containing this test
test_name: StringName of the test
error_message: Option<String>Error message if available
Implementations§
Trait Implementations§
Source§impl Clone for FailedTestInfo
impl Clone for FailedTestInfo
Source§fn clone(&self) -> FailedTestInfo
fn clone(&self) -> FailedTestInfo
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for FailedTestInfo
impl RefUnwindSafe for FailedTestInfo
impl Send for FailedTestInfo
impl Sync for FailedTestInfo
impl Unpin for FailedTestInfo
impl UnsafeUnpin for FailedTestInfo
impl UnwindSafe for FailedTestInfo
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