[][src]Struct yaxpeax_x86::long_mode::Instruction

pub struct Instruction {
    pub prefixes: Prefixes,
    pub opcode: Opcode,
    // some fields omitted
}

Fields

prefixes: Prefixesopcode: Opcode

Methods

impl Instruction[src]

pub fn operand(&self, i: u8) -> Operand[src]

pub fn operand_count(&self) -> u8[src]

pub fn operand_present(&self, i: u8) -> bool[src]

pub fn invalid() -> Instruction[src]

pub fn is_invalid(&self) -> bool[src]

pub fn segment_override_for_op(&self, op: u8) -> Option<Segment>[src]

Trait Implementations

impl<T: Write, Color: Display, Y: YaxColors<Color>> Colorize<T, Color, Y> for Instruction[src]

impl Debug for Instruction[src]

impl Decoder<Instruction> for InstDecoder[src]

type Error = DecodeError

impl Default for Instruction[src]

impl Display for Instruction[src]

impl Instruction for Instruction[src]

impl LengthedInstruction for Instruction[src]

type Unit = u64

impl<T: Write, Color: Display, Y: YaxColors<Color>> ShowContextual<u64, [Option<String>], Color, T, Y> for Instruction[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> ToString for T where
    T: Display + ?Sized
[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.