#[non_exhaustive]pub struct NumberDisplayFormatConfiguration { /* private fields */ }
Expand description
The options that determine the number display format configuration.
Implementations§
source§impl NumberDisplayFormatConfiguration
impl NumberDisplayFormatConfiguration
sourcepub fn separator_configuration(&self) -> Option<&NumericSeparatorConfiguration>
pub fn separator_configuration(&self) -> Option<&NumericSeparatorConfiguration>
The options that determine the numeric separator configuration.
sourcepub fn decimal_places_configuration(
&self
) -> Option<&DecimalPlacesConfiguration>
pub fn decimal_places_configuration(
&self
) -> Option<&DecimalPlacesConfiguration>
The option that determines the decimal places configuration.
sourcepub fn number_scale(&self) -> Option<&NumberScale>
pub fn number_scale(&self) -> Option<&NumberScale>
Determines the number scale value of the number format.
sourcepub fn negative_value_configuration(
&self
) -> Option<&NegativeValueConfiguration>
pub fn negative_value_configuration(
&self
) -> Option<&NegativeValueConfiguration>
The options that determine the negative value configuration.
sourcepub fn null_value_format_configuration(
&self
) -> Option<&NullValueFormatConfiguration>
pub fn null_value_format_configuration(
&self
) -> Option<&NullValueFormatConfiguration>
The options that determine the null value format configuration.
source§impl NumberDisplayFormatConfiguration
impl NumberDisplayFormatConfiguration
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture NumberDisplayFormatConfiguration
.
Trait Implementations§
source§impl Clone for NumberDisplayFormatConfiguration
impl Clone for NumberDisplayFormatConfiguration
source§fn clone(&self) -> NumberDisplayFormatConfiguration
fn clone(&self) -> NumberDisplayFormatConfiguration
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl PartialEq<NumberDisplayFormatConfiguration> for NumberDisplayFormatConfiguration
impl PartialEq<NumberDisplayFormatConfiguration> for NumberDisplayFormatConfiguration
source§fn eq(&self, other: &NumberDisplayFormatConfiguration) -> bool
fn eq(&self, other: &NumberDisplayFormatConfiguration) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.