Struct bad64_sys::InstructionOperand[][src]

#[repr(C)]pub struct InstructionOperand {
    pub operandClass: OperandClass,
    pub arrSpec: ArrangementSpec,
    pub reg: [Register; 5],
    pub cond: Condition,
    pub implspec: [u8; 5],
    pub sysreg: SystemReg,
    pub laneUsed: bool,
    pub lane: u32,
    pub immediate: u64,
    pub shiftType: ShiftType,
    pub shiftValueUsed: bool,
    pub shiftValue: u32,
    pub extend: ShiftType,
    pub signedImm: bool,
    pub pred_qual: c_char,
    pub mul_vl: bool,
    pub name: [c_char; 16],
}

Fields

operandClass: OperandClassarrSpec: ArrangementSpecreg: [Register; 5]cond: Conditionimplspec: [u8; 5]sysreg: SystemReglaneUsed: boollane: u32immediate: u64shiftType: ShiftTypeshiftValueUsed: boolshiftValue: u32extend: ShiftTypesignedImm: boolpred_qual: c_charmul_vl: boolname: [c_char; 16]

Trait Implementations

impl Clone for InstructionOperand[src]

impl Copy for InstructionOperand[src]

impl Debug for InstructionOperand[src]

impl Eq for InstructionOperand[src]

impl Hash for InstructionOperand[src]

impl PartialEq<InstructionOperand> for InstructionOperand[src]

impl StructuralEq for InstructionOperand[src]

impl StructuralPartialEq for InstructionOperand[src]

Auto Trait Implementations

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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.