pub enum X86OperandType {
Reg(RegId),
Imm(i64),
Mem(X86OpMem),
Invalid,
}Expand description
X86 operand
Variants§
Trait Implementations§
Source§impl Clone for X86OperandType
impl Clone for X86OperandType
Source§fn clone(&self) -> X86OperandType
fn clone(&self) -> X86OperandType
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 X86OperandType
impl Debug for X86OperandType
Source§impl PartialEq for X86OperandType
impl PartialEq for X86OperandType
impl Eq for X86OperandType
impl StructuralPartialEq for X86OperandType
Auto Trait Implementations§
impl Freeze for X86OperandType
impl RefUnwindSafe for X86OperandType
impl Send for X86OperandType
impl Sync for X86OperandType
impl Unpin for X86OperandType
impl UnwindSafe for X86OperandType
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