pub enum OperandSize {
Byte,
Word,
Dword,
Qword,
Xmmword,
Ymmword,
Zmmword,
}Expand description
Operand size hint (from byte ptr, dword ptr, etc.).
Variants§
Byte
8-bit (byte ptr).
Word
16-bit (word ptr).
Dword
32-bit (dword ptr).
Qword
64-bit (qword ptr).
Xmmword
128-bit (xmmword ptr / oword ptr).
Ymmword
256-bit (ymmword ptr).
Zmmword
512-bit (zmmword ptr).
Implementations§
Trait Implementations§
Source§impl Clone for OperandSize
impl Clone for OperandSize
Source§fn clone(&self) -> OperandSize
fn clone(&self) -> OperandSize
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 OperandSize
impl Debug for OperandSize
Source§impl Display for OperandSize
impl Display for OperandSize
Source§impl PartialEq for OperandSize
impl PartialEq for OperandSize
impl Copy for OperandSize
impl Eq for OperandSize
impl StructuralPartialEq for OperandSize
Auto Trait Implementations§
impl Freeze for OperandSize
impl RefUnwindSafe for OperandSize
impl Send for OperandSize
impl Sync for OperandSize
impl Unpin for OperandSize
impl UnwindSafe for OperandSize
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