pub enum MemoryOpMode {
    Immediate = 0,
    Memory = 96,
    Atomic = 192,
}Expand description
The memory operation mode portion of the instruction’s opcode.
Variants§
Trait Implementations§
Source§impl Clone for MemoryOpMode
 
impl Clone for MemoryOpMode
Source§fn clone(&self) -> MemoryOpMode
 
fn clone(&self) -> MemoryOpMode
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 MemoryOpMode
 
impl Debug for MemoryOpMode
Source§impl Ord for MemoryOpMode
 
impl Ord for MemoryOpMode
Source§fn cmp(&self, other: &MemoryOpMode) -> Ordering
 
fn cmp(&self, other: &MemoryOpMode) -> 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 MemoryOpMode
 
impl PartialEq for MemoryOpMode
Source§impl PartialOrd for MemoryOpMode
 
impl PartialOrd for MemoryOpMode
impl Copy for MemoryOpMode
impl Eq for MemoryOpMode
impl StructuralPartialEq for MemoryOpMode
Auto Trait Implementations§
impl Freeze for MemoryOpMode
impl RefUnwindSafe for MemoryOpMode
impl Send for MemoryOpMode
impl Sync for MemoryOpMode
impl Unpin for MemoryOpMode
impl UnwindSafe for MemoryOpMode
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