[][src]Struct xed_sys::xed_inst_s

#[repr(C)]pub struct xed_inst_s {
    pub _noperands: u8,
    pub _cpl: u8,
    pub _flag_complex: u8,
    pub _exceptions: u8,
    pub _flag_info_index: u16,
    pub _iform_enum: u16,
    pub _operand_base: u16,
    pub _attributes: u16,
}

@ingroup DEC constant information about a decoded instruction form, including the pointer to the constant operand properties #xed_operand_t for this instruction form.

Fields

_noperands: u8_cpl: u8_flag_complex: u8_exceptions: u8_flag_info_index: u16_iform_enum: u16_operand_base: u16_attributes: u16

Trait Implementations

impl Clone for xed_inst_s[src]

impl Copy for xed_inst_s[src]

impl Debug for xed_inst_s[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.