Enum capstone_sys::arm_op_type
source · #[repr(u32)]pub enum arm_op_type {
ARM_OP_INVALID = 0,
ARM_OP_REG = 1,
ARM_OP_IMM = 2,
ARM_OP_MEM = 3,
ARM_OP_FP = 4,
ARM_OP_CIMM = 64,
ARM_OP_PIMM = 65,
ARM_OP_SETEND = 66,
ARM_OP_SYSREG = 67,
}
Expand description
Operand type for instruction’s operands
Variants§
ARM_OP_INVALID = 0
< = CS_OP_INVALID (Uninitialized).
ARM_OP_REG = 1
< = CS_OP_REG (Register operand).
ARM_OP_IMM = 2
< = CS_OP_IMM (Immediate operand).
ARM_OP_MEM = 3
< = CS_OP_MEM (Memory operand).
ARM_OP_FP = 4
< = CS_OP_FP (Floating-Point operand).
ARM_OP_CIMM = 64
< C-Immediate (coprocessor registers)
ARM_OP_PIMM = 65
< P-Immediate (coprocessor registers)
ARM_OP_SETEND = 66
< operand for SETEND instruction
ARM_OP_SYSREG = 67
< MSR/MRS special register operand
Trait Implementations§
source§impl Clone for arm_op_type
impl Clone for arm_op_type
source§fn clone(&self) -> arm_op_type
fn clone(&self) -> arm_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 arm_op_type
impl Debug for arm_op_type
source§impl Hash for arm_op_type
impl Hash for arm_op_type
source§impl PartialEq for arm_op_type
impl PartialEq for arm_op_type
source§fn eq(&self, other: &arm_op_type) -> bool
fn eq(&self, other: &arm_op_type) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for arm_op_type
impl Eq for arm_op_type
impl StructuralPartialEq for arm_op_type
Auto Trait Implementations§
impl RefUnwindSafe for arm_op_type
impl Send for arm_op_type
impl Sync for arm_op_type
impl Unpin for arm_op_type
impl UnwindSafe for arm_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