pub enum ReadMemoryError {
NullPointer,
InvalidAlignment,
FailedToChangeProtection,
FailedToRestoreProtection,
InvalidAccess,
}
Variants§
Trait Implementations§
Source§impl Debug for ReadMemoryError
impl Debug for ReadMemoryError
Source§impl Display for ReadMemoryError
impl Display for ReadMemoryError
Source§impl Error for ReadMemoryError
impl Error for ReadMemoryError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§impl PartialEq for ReadMemoryError
impl PartialEq for ReadMemoryError
impl StructuralPartialEq for ReadMemoryError
Auto Trait Implementations§
impl Freeze for ReadMemoryError
impl RefUnwindSafe for ReadMemoryError
impl Send for ReadMemoryError
impl Sync for ReadMemoryError
impl Unpin for ReadMemoryError
impl UnwindSafe for ReadMemoryError
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