#[non_exhaustive]pub struct DropDownControlDisplayOptionsBuilder { /* private fields */ }
Expand description
A builder for DropDownControlDisplayOptions
.
Implementations§
source§impl DropDownControlDisplayOptionsBuilder
impl DropDownControlDisplayOptionsBuilder
sourcepub fn select_all_options(self, input: ListControlSelectAllOptions) -> Self
pub fn select_all_options(self, input: ListControlSelectAllOptions) -> Self
The configuration of the Select all
options in a dropdown control.
sourcepub fn set_select_all_options(
self,
input: Option<ListControlSelectAllOptions>
) -> Self
pub fn set_select_all_options( self, input: Option<ListControlSelectAllOptions> ) -> Self
The configuration of the Select all
options in a dropdown control.
sourcepub fn title_options(self, input: LabelOptions) -> Self
pub fn title_options(self, input: LabelOptions) -> Self
The options to configure the title visibility, name, and font size.
sourcepub fn set_title_options(self, input: Option<LabelOptions>) -> Self
pub fn set_title_options(self, input: Option<LabelOptions>) -> Self
The options to configure the title visibility, name, and font size.
sourcepub fn build(self) -> DropDownControlDisplayOptions
pub fn build(self) -> DropDownControlDisplayOptions
Consumes the builder and constructs a DropDownControlDisplayOptions
.
Trait Implementations§
source§impl Clone for DropDownControlDisplayOptionsBuilder
impl Clone for DropDownControlDisplayOptionsBuilder
source§fn clone(&self) -> DropDownControlDisplayOptionsBuilder
fn clone(&self) -> DropDownControlDisplayOptionsBuilder
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 Default for DropDownControlDisplayOptionsBuilder
impl Default for DropDownControlDisplayOptionsBuilder
source§fn default() -> DropDownControlDisplayOptionsBuilder
fn default() -> DropDownControlDisplayOptionsBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<DropDownControlDisplayOptionsBuilder> for DropDownControlDisplayOptionsBuilder
impl PartialEq<DropDownControlDisplayOptionsBuilder> for DropDownControlDisplayOptionsBuilder
source§fn eq(&self, other: &DropDownControlDisplayOptionsBuilder) -> bool
fn eq(&self, other: &DropDownControlDisplayOptionsBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.