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