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 strNumber prefix or an empty string
suffix: &'a strNumber suffix or an empty string
digit_separator: &'a strDigit separator or an empty string to not use a digit separator
digit_group_size: u8Size of a digit group or 0 to not use a digit separator
number_base: NumberBaseNumber base
uppercase_hex: boolUse uppercase hex digits
small_hex_numbers_in_decimal: boolSmall hex numbers (-9 .. 9) are shown in decimal
add_leading_zero_to_hex_numbers: boolAdd a leading zero to hex numbers if there’s no prefix and the number starts with hex digits A-F
leading_zeros: boolIf true, add leading zeros to numbers, eg. 1h vs 00000001h
signed_number: boolIf true, the number is signed, and if false it’s an unsigned number
displacement_leading_zeros: boolAdd leading zeros to displacements
Implementations§
source§impl<'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.1hvs00000001hsigned_number: Signed numbers iftrue, and unsigned numbers iffalsedisplacement_leading_zeros: Add leading zeros to displacements
Trait Implementations§
source§impl<'a> Clone for NumberFormattingOptions<'a>
impl<'a> Clone for NumberFormattingOptions<'a>
source§fn clone(&self) -> NumberFormattingOptions<'a>
fn clone(&self) -> NumberFormattingOptions<'a>
Returns a copy of the value. Read more
1.0.0§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl<'a> Debug for NumberFormattingOptions<'a>
impl<'a> Debug for NumberFormattingOptions<'a>
source§impl<'a> Default for NumberFormattingOptions<'a>
impl<'a> Default for NumberFormattingOptions<'a>
source§fn 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§
§impl<T> Any for Twhere
T: 'static + ?Sized,
impl<T> Any for Twhere T: 'static + ?Sized,
§impl<T> Borrow<T> for Twhere
T: ?Sized,
impl<T> Borrow<T> for Twhere T: ?Sized,
§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
const: unstable§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more