[][src]Struct zydis::ffi::FormatterContext

#[repr(C)]pub struct FormatterContext {
    pub instruction: *const DecodedInstruction,
    pub operand: *const DecodedOperand,
    pub runtime_address: u64,
    pub user_data: *mut c_void,
}

Fields

instruction: *const DecodedInstruction

The instruction being formatted.

operand: *const DecodedOperand

The current operand being formatted.

runtime_address: u64

The runtime address of the instruction.

If invalid, this is equal to u64::max_value()

user_data: *mut c_void

A pointer to user-defined data.

Trait Implementations

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