pub struct Builder { /* private fields */ }
Expand description
A builder for NumericSeparatorConfiguration
.
Implementations§
source§impl Builder
impl Builder
sourcepub fn decimal_separator(self, input: NumericSeparatorSymbol) -> Self
pub fn decimal_separator(self, input: NumericSeparatorSymbol) -> Self
Determines the decimal separator.
sourcepub fn set_decimal_separator(self, input: Option<NumericSeparatorSymbol>) -> Self
pub fn set_decimal_separator(self, input: Option<NumericSeparatorSymbol>) -> Self
Determines the decimal separator.
sourcepub fn thousands_separator(self, input: ThousandSeparatorOptions) -> Self
pub fn thousands_separator(self, input: ThousandSeparatorOptions) -> Self
The options that determine the thousands separator configuration.
sourcepub fn set_thousands_separator(
self,
input: Option<ThousandSeparatorOptions>
) -> Self
pub fn set_thousands_separator(
self,
input: Option<ThousandSeparatorOptions>
) -> Self
The options that determine the thousands separator configuration.
sourcepub fn build(self) -> NumericSeparatorConfiguration
pub fn build(self) -> NumericSeparatorConfiguration
Consumes the builder and constructs a NumericSeparatorConfiguration
.