pub enum AccessType {
Read,
Write,
Exec,
Recursion,
Unknown,
}Expand description
Memory access type for the crashing instruction.
Variants§
Read
Reading from memory.
Write
Writing to memory.
Exec
Executing code.
Recursion
Stack recursion (>300 frames).
Unknown
Access type could not be determined.
Trait Implementations§
Source§impl Clone for AccessType
impl Clone for AccessType
Source§fn clone(&self) -> AccessType
fn clone(&self) -> AccessType
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 AccessType
impl Debug for AccessType
Source§impl PartialEq for AccessType
impl PartialEq for AccessType
Source§fn eq(&self, other: &AccessType) -> bool
fn eq(&self, other: &AccessType) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for AccessType
impl Eq for AccessType
impl StructuralPartialEq for AccessType
Auto Trait Implementations§
impl Freeze for AccessType
impl RefUnwindSafe for AccessType
impl Send for AccessType
impl Sync for AccessType
impl Unpin for AccessType
impl UnsafeUnpin for AccessType
impl UnwindSafe for AccessType
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