pub struct Builder { /* private fields */ }
Expand description
A builder for DateTimeFormatConfiguration
.
Implementations§
source§impl Builder
impl Builder
sourcepub fn date_time_format(self, input: impl Into<String>) -> Self
pub fn date_time_format(self, input: impl Into<String>) -> Self
Determines the DateTime
format.
sourcepub fn set_date_time_format(self, input: Option<String>) -> Self
pub fn set_date_time_format(self, input: Option<String>) -> Self
Determines the DateTime
format.
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 DateTime
fields.
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 DateTime
fields.
sourcepub fn build(self) -> DateTimeFormatConfiguration
pub fn build(self) -> DateTimeFormatConfiguration
Consumes the builder and constructs a DateTimeFormatConfiguration
.