logo
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_zeros: bool,
    pub signed_number: bool,
    pub displacement_leading_zeros: bool,
}
Expand description

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 uppercase 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_zeros: bool

If true, add leading zeros 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_zeros: bool

Add leading zeros to displacements

Implementations

Creates options used when formatting immediate values

Arguments
  • options: Formatter options to use

Creates options used when formatting displacements

Arguments
  • options: Formatter options to use

Creates options used when formatting branch operands

Arguments
  • options: Formatter options to use

Constructor

Arguments
  • options: Formatter options to use
  • leading_zeros: Add leading zeros to numbers, eg. 1h vs 00000001h
  • signed_number: Signed numbers if true, and unsigned numbers if false
  • displacement_leading_zeros: Add leading zeros to displacements

Trait Implementations

Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
Formats the value using the given formatter. Read more
Returns the “default value” for a type. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
Uses borrowed data to replace owned data, usually by cloning. Read more
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.