pub enum MemoryOpSize {
Word = 0,
HalfWord = 8,
Byte = 16,
DoubleWord = 24,
}Expand description
The memory operation size portion of the instruction’s opcode.
Variants§
Trait Implementations§
Source§impl Clone for MemoryOpSize
impl Clone for MemoryOpSize
Source§fn clone(&self) -> MemoryOpSize
fn clone(&self) -> MemoryOpSize
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 MemoryOpSize
impl Debug for MemoryOpSize
Source§impl Ord for MemoryOpSize
impl Ord for MemoryOpSize
Source§fn cmp(&self, other: &MemoryOpSize) -> Ordering
fn cmp(&self, other: &MemoryOpSize) -> 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 MemoryOpSize
impl PartialEq for MemoryOpSize
Source§impl PartialOrd for MemoryOpSize
impl PartialOrd for MemoryOpSize
impl Copy for MemoryOpSize
impl Eq for MemoryOpSize
impl StructuralPartialEq for MemoryOpSize
Auto Trait Implementations§
impl Freeze for MemoryOpSize
impl RefUnwindSafe for MemoryOpSize
impl Send for MemoryOpSize
impl Sync for MemoryOpSize
impl Unpin for MemoryOpSize
impl UnwindSafe for MemoryOpSize
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