#[non_exhaustive]pub struct PercentageDisplayFormatConfiguration { /* private fields */ }
Expand description
The options that determine the percentage display format configuration.
Implementations§
source§impl PercentageDisplayFormatConfiguration
impl PercentageDisplayFormatConfiguration
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 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 PercentageDisplayFormatConfiguration
impl PercentageDisplayFormatConfiguration
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture PercentageDisplayFormatConfiguration
.
Trait Implementations§
source§impl Clone for PercentageDisplayFormatConfiguration
impl Clone for PercentageDisplayFormatConfiguration
source§fn clone(&self) -> PercentageDisplayFormatConfiguration
fn clone(&self) -> PercentageDisplayFormatConfiguration
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<PercentageDisplayFormatConfiguration> for PercentageDisplayFormatConfiguration
impl PartialEq<PercentageDisplayFormatConfiguration> for PercentageDisplayFormatConfiguration
source§fn eq(&self, other: &PercentageDisplayFormatConfiguration) -> bool
fn eq(&self, other: &PercentageDisplayFormatConfiguration) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.