pub struct CheckThatResult(/* private fields */);Expand description
Data structure that contains assertion result and messages.
Trait Implementations§
Source§impl AsRef<Result<(), AssertionResult>> for CheckThatResult
impl AsRef<Result<(), AssertionResult>> for CheckThatResult
Source§impl AssertionStrategy<CheckThatResult> for AssertionResult
impl AssertionStrategy<CheckThatResult> for AssertionResult
Source§fn do_fail(self) -> CheckThatResult
fn do_fail(self) -> CheckThatResult
Behavior when assertion fails.
Source§fn do_ok(self) -> CheckThatResult
fn do_ok(self) -> CheckThatResult
Behavior when assertion passes.
Auto Trait Implementations§
impl Freeze for CheckThatResult
impl RefUnwindSafe for CheckThatResult
impl Send for CheckThatResult
impl Sync for CheckThatResult
impl Unpin for CheckThatResult
impl UnwindSafe for CheckThatResult
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