Struct iced_x86::FormatterOperandOptions[][src]

pub struct FormatterOperandOptions { /* fields omitted */ }

Operand options

Implementations

impl FormatterOperandOptions[src]

#[must_use]pub fn branch_size(&self) -> bool[src]

Show branch size (eg. SHORT, NEAR PTR)

pub fn set_branch_size(&mut self, value: bool)[src]

Show branch size (eg. SHORT, NEAR PTR)

Arguments

  • value: New value

#[must_use]pub fn rip_relative_addresses(&self) -> bool[src]

If true, show RIP relative addresses as [rip+12345678h], else show the linear address eg. [1029384756AFBECDh]

pub fn set_rip_relative_addresses(&mut self, value: bool)[src]

If true, show RIP relative addresses as [rip+12345678h], else show the linear address eg. [1029384756AFBECDh]

Arguments

  • value: New value

#[must_use]pub fn memory_size_options(&self) -> MemorySizeOptions[src]

Memory size options

pub fn set_memory_size_options(&mut self, value: MemorySizeOptions)[src]

Memory size options

Arguments

  • value: New value

Trait Implementations

impl Clone for FormatterOperandOptions[src]

impl Copy for FormatterOperandOptions[src]

impl Debug for FormatterOperandOptions[src]

impl Default for FormatterOperandOptions[src]

impl Eq for FormatterOperandOptions[src]

impl Hash for FormatterOperandOptions[src]

impl PartialEq<FormatterOperandOptions> for FormatterOperandOptions[src]

impl StructuralEq for FormatterOperandOptions[src]

impl StructuralPartialEq for FormatterOperandOptions[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.