[][src]Struct iced_x86::NumberFormattingOptions

pub struct NumberFormattingOptions<'a> {
    pub prefix: &'a str,
    pub suffix: &'a str,
    pub digit_separator: &'a str,
    pub digit_group_size: u8,
    pub number_base: NumberBase,
    pub uppercase_hex: bool,
    pub small_hex_numbers_in_decimal: bool,
    pub add_leading_zero_to_hex_numbers: bool,
    pub leading_zeroes: bool,
    pub signed_number: bool,
    pub displacement_leading_zeroes: bool,
}

Gets initialized with the default options and can be overridden by a FormatterOptionsProvider

Fields

prefix: &'a str

Number prefix or an empty string

suffix: &'a str

Number suffix or an empty string

digit_separator: &'a str

Digit separator or an empty string to not use a digit separator

digit_group_size: u8

Size of a digit group or 0 to not use a digit separator

number_base: NumberBase

Number base

uppercase_hex: bool

Use upper case hex digits

small_hex_numbers_in_decimal: bool

Small hex numbers (-9 .. 9) are shown in decimal

add_leading_zero_to_hex_numbers: bool

Add a leading zero to hex numbers if there's no prefix and the number starts with hex digits A-F

leading_zeroes: bool

If true, add leading zeroes to numbers, eg. 1h vs 00000001h

signed_number: bool

If true, the number is signed, and if false it's an unsigned number

displacement_leading_zeroes: bool

Add leading zeroes to displacements

Implementations

impl<'a> NumberFormattingOptions<'a>[src]

#[must_use]pub fn with_immediate(options: &'a FormatterOptions) -> Self[src]

Creates options used when formatting immediate values

Arguments

  • options: Formatter options to use

#[must_use]pub fn with_displacement(options: &'a FormatterOptions) -> Self[src]

Creates options used when formatting displacements

Arguments

  • options: Formatter options to use

#[must_use]pub fn with_branch(options: &'a FormatterOptions) -> Self[src]

Creates options used when formatting branch operands

Arguments

  • options: Formatter options to use

#[must_use]pub fn new(
    options: &'a FormatterOptions,
    leading_zeroes: bool,
    signed_number: bool,
    displacement_leading_zeroes: bool
) -> Self
[src]

Constructor

Arguments

  • options: Formatter options to use
  • leading_zeroes: Add leading zeroes to numbers, eg. 1h vs 00000001h
  • signed_number: Signed numbers if true, and unsigned numbers if false
  • displacement_leading_zeroes: Add leading zeroes to displacements

Trait Implementations

impl<'a> Clone for NumberFormattingOptions<'a>[src]

impl<'a> Copy for NumberFormattingOptions<'a>[src]

impl<'a> Debug for NumberFormattingOptions<'a>[src]

impl<'a> Default for NumberFormattingOptions<'a>[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.