[][src]Struct iced_x86::BlockEncoderOptions

pub struct BlockEncoderOptions;

BlockEncoder options

Implementations

impl BlockEncoderOptions[src]

pub const NONE: u32[src]

No option is set

pub const DONT_FIX_BRANCHES: u32[src]

By default, branches get updated if the target is too far away, eg. Jcc SHORT -> Jcc NEAR or if 64-bit mode, Jcc + JMP [RIP+mem]. If this option is enabled, no branches are fixed.

pub const RETURN_RELOC_INFOS: u32[src]

The BlockEncoder should return RelocInfos

pub const RETURN_NEW_INSTRUCTION_OFFSETS: u32[src]

The BlockEncoder should return new instruction offsets

pub const RETURN_CONSTANT_OFFSETS: u32[src]

The BlockEncoder should return ConstantOffsets

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.