[][src]Struct xori::arch::x86::archx86::X86Detail

pub struct X86Detail {
    pub prefix: [u8; 4],
    pub opcode: [u8; 4],
    pub printing_opcode: u32,
    pub rex: u8,
    pub address_size: u8,
    pub mod_rm: u8,
    pub sib: u8,
    pub sib_index: u16,
    pub sib_scale: u8,
    pub sib_base: u16,
    pub displacement: i32,
    pub sse_cc: u8,
    pub avx_cc: u8,
    pub avx_sae: bool,
    pub avx_rm: u8,
    pub op_count: usize,
    pub operands: [InstrOperandsx86; 8],
}

Instruction Detail

Fields

Trait Implementations

impl Debug for X86Detail
[src]

Formats the value using the given formatter. Read more

impl Default for X86Detail
[src]

Returns the "default value" for a type. Read more

impl ArchDetail for X86Detail
[src]

Auto Trait Implementations

impl Send for X86Detail

impl Sync for X86Detail

Blanket Implementations

impl<T> From for T
[src]

Performs the conversion.

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

Performs the conversion.

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

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

Immutably borrows from an owned value. Read more

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

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

Mutably borrows from an owned value. Read more

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

🔬 This is a nightly-only experimental API. (get_type_id)

this method will likely be replaced by an associated static

Gets the TypeId of self. Read more

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]