Struct iced_x86::NumberFormattingOptions
source · [−]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
sourceimpl<'a> NumberFormattingOptions<'a>
impl<'a> NumberFormattingOptions<'a>
sourcepub fn with_immediate(options: &'a FormatterOptions) -> Self
pub fn with_immediate(options: &'a FormatterOptions) -> Self
sourcepub fn with_displacement(options: &'a FormatterOptions) -> Self
pub fn with_displacement(options: &'a FormatterOptions) -> Self
sourcepub fn with_branch(options: &'a FormatterOptions) -> Self
pub fn with_branch(options: &'a FormatterOptions) -> Self
sourcepub fn new(
options: &'a FormatterOptions,
leading_zeros: bool,
signed_number: bool,
displacement_leading_zeros: bool
) -> Self
pub fn new(
options: &'a FormatterOptions,
leading_zeros: bool,
signed_number: bool,
displacement_leading_zeros: bool
) -> Self
Constructor
Arguments
options
: Formatter options to useleading_zeros
: Add leading zeros to numbers, eg.1h
vs00000001h
signed_number
: Signed numbers iftrue
, and unsigned numbers iffalse
displacement_leading_zeros
: Add leading zeros to displacements
Trait Implementations
sourceimpl<'a> Clone for NumberFormattingOptions<'a>
impl<'a> Clone for NumberFormattingOptions<'a>
sourcefn clone(&self) -> NumberFormattingOptions<'a>
fn clone(&self) -> NumberFormattingOptions<'a>
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl<'a> Debug for NumberFormattingOptions<'a>
impl<'a> Debug for NumberFormattingOptions<'a>
sourceimpl<'a> Default for NumberFormattingOptions<'a>
impl<'a> Default for NumberFormattingOptions<'a>
sourcefn default() -> NumberFormattingOptions<'a>
fn default() -> NumberFormattingOptions<'a>
Returns the “default value” for a type. Read more
impl<'a> Copy for NumberFormattingOptions<'a>
Auto Trait Implementations
impl<'a> RefUnwindSafe for NumberFormattingOptions<'a>
impl<'a> Send for NumberFormattingOptions<'a>
impl<'a> Sync for NumberFormattingOptions<'a>
impl<'a> Unpin for NumberFormattingOptions<'a>
impl<'a> UnwindSafe for NumberFormattingOptions<'a>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more