#[repr(u32)]pub enum m68k_op_type {
M68K_OP_INVALID = 0,
M68K_OP_REG = 1,
M68K_OP_IMM = 2,
M68K_OP_MEM = 3,
M68K_OP_FP_SINGLE = 4,
M68K_OP_FP_DOUBLE = 5,
M68K_OP_REG_BITS = 6,
M68K_OP_REG_PAIR = 7,
M68K_OP_BR_DISP = 8,
}
Expand description
Operand type for instruction’s operands
Variants§
M68K_OP_INVALID = 0
< = CS_OP_INVALID (Uninitialized).
M68K_OP_REG = 1
< = CS_OP_REG (Register operand).
M68K_OP_IMM = 2
< = CS_OP_IMM (Immediate operand).
M68K_OP_MEM = 3
< = CS_OP_MEM (Memory operand).
M68K_OP_FP_SINGLE = 4
< single precision Floating-Point operand
M68K_OP_FP_DOUBLE = 5
< double precision Floating-Point operand
M68K_OP_REG_BITS = 6
< Register bits move
M68K_OP_REG_PAIR = 7
< Register pair in the same op (upper 4 bits for first reg, lower for second)
M68K_OP_BR_DISP = 8
< Branch displacement
Trait Implementations§
Source§impl Clone for m68k_op_type
impl Clone for m68k_op_type
Source§fn clone(&self) -> m68k_op_type
fn clone(&self) -> m68k_op_type
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 m68k_op_type
impl Debug for m68k_op_type
Source§impl Hash for m68k_op_type
impl Hash for m68k_op_type
Source§impl PartialEq for m68k_op_type
impl PartialEq for m68k_op_type
impl Copy for m68k_op_type
impl Eq for m68k_op_type
impl StructuralPartialEq for m68k_op_type
Auto Trait Implementations§
impl Freeze for m68k_op_type
impl RefUnwindSafe for m68k_op_type
impl Send for m68k_op_type
impl Sync for m68k_op_type
impl Unpin for m68k_op_type
impl UnwindSafe for m68k_op_type
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