#[repr(i32)]pub enum MemRWStatus {
Unknown = -2,
GenericErrorRet = -1,
MemTxOk = 0,
MemTxError = 1,
MemTxDecodeError = 2,
}Expand description
For fallible virt/phys memory R/W operations
Variants§
Trait Implementations§
Source§impl Clone for MemRWStatus
impl Clone for MemRWStatus
Source§fn clone(&self) -> MemRWStatus
fn clone(&self) -> MemRWStatus
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 MemRWStatus
impl Debug for MemRWStatus
Source§impl From<i32> for MemRWStatus
impl From<i32> for MemRWStatus
Source§impl Ord for MemRWStatus
impl Ord for MemRWStatus
Source§fn cmp(&self, other: &MemRWStatus) -> Ordering
fn cmp(&self, other: &MemRWStatus) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for MemRWStatus
impl PartialEq for MemRWStatus
Source§impl PartialOrd for MemRWStatus
impl PartialOrd for MemRWStatus
impl Copy for MemRWStatus
impl Eq for MemRWStatus
impl StructuralPartialEq for MemRWStatus
Auto Trait Implementations§
impl Freeze for MemRWStatus
impl RefUnwindSafe for MemRWStatus
impl Send for MemRWStatus
impl Sync for MemRWStatus
impl Unpin for MemRWStatus
impl UnwindSafe for MemRWStatus
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