pub struct PropertyTestFailure {
pub operation_index: u64,
pub operation: String,
pub message: String,
pub state_description: String,
}Expand description
Details of a property test failure.
Fields§
§operation_index: u64Index of the failing operation (0-based)
operation: StringThe operation that caused the failure
message: StringThe invariant violation message
state_description: StringDescription of the state at failure
Trait Implementations§
Auto Trait Implementations§
impl Freeze for PropertyTestFailure
impl RefUnwindSafe for PropertyTestFailure
impl Send for PropertyTestFailure
impl Sync for PropertyTestFailure
impl Unpin for PropertyTestFailure
impl UnwindSafe for PropertyTestFailure
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