pub struct Builder { /* private fields */ }
Expand description
A builder for StringFormatConfiguration
.
Implementations§
source§impl Builder
impl Builder
sourcepub fn null_value_format_configuration(
self,
input: NullValueFormatConfiguration
) -> Self
pub fn null_value_format_configuration(
self,
input: NullValueFormatConfiguration
) -> Self
The options that determine the null value format configuration.
sourcepub fn set_null_value_format_configuration(
self,
input: Option<NullValueFormatConfiguration>
) -> Self
pub fn set_null_value_format_configuration(
self,
input: Option<NullValueFormatConfiguration>
) -> Self
The options that determine the null value format configuration.
sourcepub fn numeric_format_configuration(
self,
input: NumericFormatConfiguration
) -> Self
pub fn numeric_format_configuration(
self,
input: NumericFormatConfiguration
) -> Self
The formatting configuration for numeric strings.
sourcepub fn set_numeric_format_configuration(
self,
input: Option<NumericFormatConfiguration>
) -> Self
pub fn set_numeric_format_configuration(
self,
input: Option<NumericFormatConfiguration>
) -> Self
The formatting configuration for numeric strings.
sourcepub fn build(self) -> StringFormatConfiguration
pub fn build(self) -> StringFormatConfiguration
Consumes the builder and constructs a StringFormatConfiguration
.