pub struct Builder { /* private fields */ }
Expand description
A builder for ParameterDateTimePickerControl
.
Implementations§
source§impl Builder
impl Builder
sourcepub fn parameter_control_id(self, input: impl Into<String>) -> Self
pub fn parameter_control_id(self, input: impl Into<String>) -> Self
The ID of the ParameterDateTimePickerControl
.
sourcepub fn set_parameter_control_id(self, input: Option<String>) -> Self
pub fn set_parameter_control_id(self, input: Option<String>) -> Self
The ID of the ParameterDateTimePickerControl
.
sourcepub fn title(self, input: impl Into<String>) -> Self
pub fn title(self, input: impl Into<String>) -> Self
The title of the ParameterDateTimePickerControl
.
sourcepub fn set_title(self, input: Option<String>) -> Self
pub fn set_title(self, input: Option<String>) -> Self
The title of the ParameterDateTimePickerControl
.
sourcepub fn source_parameter_name(self, input: impl Into<String>) -> Self
pub fn source_parameter_name(self, input: impl Into<String>) -> Self
The name of the ParameterDateTimePickerControl
.
sourcepub fn set_source_parameter_name(self, input: Option<String>) -> Self
pub fn set_source_parameter_name(self, input: Option<String>) -> Self
The name of the ParameterDateTimePickerControl
.
sourcepub fn display_options(self, input: DateTimePickerControlDisplayOptions) -> Self
pub fn display_options(self, input: DateTimePickerControlDisplayOptions) -> Self
The display options of a control.
sourcepub fn set_display_options(
self,
input: Option<DateTimePickerControlDisplayOptions>
) -> Self
pub fn set_display_options(
self,
input: Option<DateTimePickerControlDisplayOptions>
) -> Self
The display options of a control.
sourcepub fn build(self) -> ParameterDateTimePickerControl
pub fn build(self) -> ParameterDateTimePickerControl
Consumes the builder and constructs a ParameterDateTimePickerControl
.