#[repr(u32)]pub enum mips_op_type {
MIPS_OP_INVALID = 0,
MIPS_OP_REG = 1,
MIPS_OP_IMM = 2,
MIPS_OP_MEM = 3,
}
Expand description
Operand type for instruction’s operands
Variants§
MIPS_OP_INVALID = 0
< = CS_OP_INVALID (Uninitialized).
MIPS_OP_REG = 1
< = CS_OP_REG (Register operand).
MIPS_OP_IMM = 2
< = CS_OP_IMM (Immediate operand).
MIPS_OP_MEM = 3
< = CS_OP_MEM (Memory operand).
Trait Implementations§
Source§impl Clone for mips_op_type
impl Clone for mips_op_type
Source§fn clone(&self) -> mips_op_type
fn clone(&self) -> mips_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 mips_op_type
impl Debug for mips_op_type
Source§impl Hash for mips_op_type
impl Hash for mips_op_type
Source§impl PartialEq for mips_op_type
impl PartialEq for mips_op_type
impl Copy for mips_op_type
impl Eq for mips_op_type
impl StructuralPartialEq for mips_op_type
Auto Trait Implementations§
impl Freeze for mips_op_type
impl RefUnwindSafe for mips_op_type
impl Send for mips_op_type
impl Sync for mips_op_type
impl Unpin for mips_op_type
impl UnwindSafe for mips_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