Struct guestmem::GuestMemoryError
source · pub struct GuestMemoryError(/* private fields */);
Expand description
A memory access error returned by one of the GuestMemory
methods.
Trait Implementations§
source§impl Debug for GuestMemoryError
impl Debug for GuestMemoryError
source§impl Display for GuestMemoryError
impl Display for GuestMemoryError
source§impl Error for GuestMemoryError
impl Error for GuestMemoryError
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 From<GuestMemoryError> for AccessError
impl From<GuestMemoryError> for AccessError
source§fn from(source: GuestMemoryError) -> Self
fn from(source: GuestMemoryError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for GuestMemoryError
impl !RefUnwindSafe for GuestMemoryError
impl Send for GuestMemoryError
impl Sync for GuestMemoryError
impl Unpin for GuestMemoryError
impl !UnwindSafe for GuestMemoryError
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