Struct capstone_sys::cs_arm[][src]

#[repr(C)]pub struct cs_arm {
    pub usermode: bool,
    pub vector_size: c_int,
    pub vector_data: arm_vectordata_type,
    pub cps_mode: arm_cpsmode_type,
    pub cps_flag: arm_cpsflag_type,
    pub cc: arm_cc,
    pub update_flags: bool,
    pub writeback: bool,
    pub mem_barrier: arm_mem_barrier,
    pub op_count: u8,
    pub operands: [cs_arm_op; 36],
}

Instruction structure

Fields

usermode: bool

< User-mode registers to be loaded (for LDM/STM instructions)

vector_size: c_int

< Scalar size for vector instructions

vector_data: arm_vectordata_type

< Data type for elements of vector instructions

cps_mode: arm_cpsmode_type

< CPS mode for CPS instruction

cps_flag: arm_cpsflag_type

< CPS mode for CPS instruction

cc: arm_cc

< conditional code for this insn

update_flags: bool

< does this insn update flags?

writeback: bool

< does this insn write-back?

mem_barrier: arm_mem_barrier

< Option for some memory barrier instructions

op_count: u8

Number of operands of this instruction, or 0 when instruction has no operand.

operands: [cs_arm_op; 36]

< operands for this instruction.

Trait Implementations

impl Clone for cs_arm[src]

impl Copy for cs_arm[src]

impl Debug for cs_arm[src]

Auto Trait Implementations

impl Send for cs_arm

impl Sync for cs_arm

impl Unpin for cs_arm

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.