#[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() -> NumericSeparatorConfigurationBuilder
pub fn builder() -> NumericSeparatorConfigurationBuilder
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 ==.impl StructuralPartialEq for NumericSeparatorConfiguration
Auto Trait Implementations§
impl RefUnwindSafe for NumericSeparatorConfiguration
impl Send for NumericSeparatorConfiguration
impl Sync for NumericSeparatorConfiguration
impl Unpin for NumericSeparatorConfiguration
impl UnwindSafe for NumericSeparatorConfiguration
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more