pub enum CrashInconsistency {
IntDivByZeroNotPossible,
PrivInstructionCrashWithoutPrivInstruction,
NonCanonicalAddressFalselyReported,
AccessViolationWhenAccessAllowed,
CrashingAccessNotFoundInMemoryAccesses,
}
Variants§
IntDivByZeroNotPossible
PrivInstructionCrashWithoutPrivInstruction
NonCanonicalAddressFalselyReported
AccessViolationWhenAccessAllowed
CrashingAccessNotFoundInMemoryAccesses
Trait Implementations§
Source§impl Clone for CrashInconsistency
impl Clone for CrashInconsistency
Source§fn clone(&self) -> CrashInconsistency
fn clone(&self) -> CrashInconsistency
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 moreSource§impl Debug for CrashInconsistency
impl Debug for CrashInconsistency
Source§impl Display for CrashInconsistency
impl Display for CrashInconsistency
Auto Trait Implementations§
impl Freeze for CrashInconsistency
impl RefUnwindSafe for CrashInconsistency
impl Send for CrashInconsistency
impl Sync for CrashInconsistency
impl Unpin for CrashInconsistency
impl UnwindSafe for CrashInconsistency
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