Enum capstone_sys::arm64_op_type
source · #[repr(u32)]pub enum arm64_op_type {
ARM64_OP_INVALID = 0,
ARM64_OP_REG = 1,
ARM64_OP_IMM = 2,
ARM64_OP_MEM = 3,
ARM64_OP_FP = 4,
ARM64_OP_CIMM = 64,
ARM64_OP_REG_MRS = 65,
ARM64_OP_REG_MSR = 66,
ARM64_OP_PSTATE = 67,
ARM64_OP_SYS = 68,
ARM64_OP_PREFETCH = 69,
ARM64_OP_BARRIER = 70,
}
Expand description
Operand type for instruction’s operands
Variants§
ARM64_OP_INVALID = 0
< = CS_OP_INVALID (Uninitialized).
ARM64_OP_REG = 1
< = CS_OP_REG (Register operand).
ARM64_OP_IMM = 2
< = CS_OP_IMM (Immediate operand).
ARM64_OP_MEM = 3
< = CS_OP_MEM (Memory operand).
ARM64_OP_FP = 4
< = CS_OP_FP (Floating-Point operand).
ARM64_OP_CIMM = 64
< C-Immediate
ARM64_OP_REG_MRS = 65
< MRS register operand.
ARM64_OP_REG_MSR = 66
< MSR register operand.
ARM64_OP_PSTATE = 67
< PState operand.
ARM64_OP_SYS = 68
< SYS operand for IC/DC/AT/TLBI instructions.
ARM64_OP_PREFETCH = 69
< Prefetch operand (PRFM).
ARM64_OP_BARRIER = 70
< Memory barrier operand (ISB/DMB/DSB instructions).
Trait Implementations§
source§impl Clone for arm64_op_type
impl Clone for arm64_op_type
source§fn clone(&self) -> arm64_op_type
fn clone(&self) -> arm64_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 arm64_op_type
impl Debug for arm64_op_type
source§impl Hash for arm64_op_type
impl Hash for arm64_op_type
source§impl PartialEq for arm64_op_type
impl PartialEq for arm64_op_type
source§fn eq(&self, other: &arm64_op_type) -> bool
fn eq(&self, other: &arm64_op_type) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for arm64_op_type
impl Eq for arm64_op_type
impl StructuralPartialEq for arm64_op_type
Auto Trait Implementations§
impl RefUnwindSafe for arm64_op_type
impl Send for arm64_op_type
impl Sync for arm64_op_type
impl Unpin for arm64_op_type
impl UnwindSafe for arm64_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