pub struct Failure { /* private fields */ }
Expand description
Represents data for Failure
variant of a TestResult
.
There is no public constructor for this struct. To create a new instance you should
use TestResult::new_failure
method.
This struct implements the Drop
trait to print failure message and panic.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Failure
impl RefUnwindSafe for Failure
impl Send for Failure
impl Sync for Failure
impl Unpin for Failure
impl UnwindSafe for Failure
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