#[repr(u8)]pub enum OperandType {
Show 13 variants
Reg = 1,
Mem = 2,
Phrase = 3,
Displ = 4,
Imm = 5,
Far = 6,
Near = 7,
IdpSpec0 = 8,
IdpSpec1 = 9,
IdpSpec2 = 10,
IdpSpec3 = 11,
IdpSpec4 = 12,
IdpSpec5 = 13,
}
Variants§
Reg = 1
Mem = 2
Phrase = 3
Displ = 4
Imm = 5
Far = 6
Near = 7
IdpSpec0 = 8
IdpSpec1 = 9
IdpSpec2 = 10
IdpSpec3 = 11
IdpSpec4 = 12
IdpSpec5 = 13
Trait Implementations§
Source§impl Clone for OperandType
impl Clone for OperandType
Source§fn clone(&self) -> OperandType
fn clone(&self) -> OperandType
Returns a copy 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 OperandType
impl Debug for OperandType
Source§impl Hash for OperandType
impl Hash for OperandType
Source§impl Ord for OperandType
impl Ord for OperandType
Source§fn cmp(&self, other: &OperandType) -> Ordering
fn cmp(&self, other: &OperandType) -> 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 OperandType
impl PartialEq for OperandType
Source§impl PartialOrd for OperandType
impl PartialOrd for OperandType
impl Copy for OperandType
impl Eq for OperandType
impl StructuralPartialEq for OperandType
Auto Trait Implementations§
impl Freeze for OperandType
impl RefUnwindSafe for OperandType
impl Send for OperandType
impl Sync for OperandType
impl Unpin for OperandType
impl UnwindSafe for OperandType
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