Struct capstone_sys::cs_sparc[][src]

#[repr(C)]pub struct cs_sparc {
    pub cc: sparc_cc,
    pub hint: sparc_hint,
    pub op_count: u8,
    pub operands: [cs_sparc_op; 4],
}

Instruction structure

Fields

cc: sparc_cc

< code condition for this insn

hint: sparc_hint

< branch hint: encoding as bitwise OR of sparc_hint.

op_count: u8

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

operands: [cs_sparc_op; 4]

< operands for this instruction.

Trait Implementations

impl Clone for cs_sparc[src]

impl Copy for cs_sparc[src]

impl Debug for cs_sparc[src]

Auto Trait Implementations

impl Send for cs_sparc

impl Sync for cs_sparc

impl Unpin for cs_sparc

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.