[][src]Struct xed_sys::xed_format_options_t

#[repr(C)]pub struct xed_format_options_t {
    pub hex_address_before_symbolic_name: c_uint,
    pub xml_a: c_uint,
    pub xml_f: c_uint,
    pub omit_unit_scale: c_uint,
    pub no_sign_extend_signed_immediates: c_uint,
    pub write_mask_curly_k0: c_uint,
    pub lowercase_hex: xed_bool_t,
}

Options for the disasembly formatting functions. Set once during initialization by a calling #xed_format_set_options @ingroup PRINT

Fields

hex_address_before_symbolic_name: c_uint

by default, XED prints the hex address before any symbolic name for branch targets. If set to zero, then XED will not print the hex address before a valid symbolic name.

xml_a: c_uint

Simple XML output format for the Intel syntax disassembly.

xml_f: c_uint

Include flags in the XML formatting (must also supply xml_a)

omit_unit_scale: c_uint

omit unit scale "*1"

no_sign_extend_signed_immediates: c_uint

do not sign extend signed immediates

write_mask_curly_k0: c_uint

write-mask-with-curly-brackets, omit k0

lowercase_hex: xed_bool_t

lowercase hexadecimal

Trait Implementations

impl Clone for xed_format_options_t[src]

impl Copy for xed_format_options_t[src]

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