#[non_exhaustive]pub struct ParameterDropDownControl { /* private fields */ }Expand description
A control to display a dropdown list with buttons that are used to select a single value.
Implementations§
source§impl ParameterDropDownControl
impl ParameterDropDownControl
sourcepub fn parameter_control_id(&self) -> Option<&str>
pub fn parameter_control_id(&self) -> Option<&str>
The ID of the ParameterDropDownControl.
sourcepub fn source_parameter_name(&self) -> Option<&str>
pub fn source_parameter_name(&self) -> Option<&str>
The source parameter name of the ParameterDropDownControl.
sourcepub fn display_options(&self) -> Option<&DropDownControlDisplayOptions>
pub fn display_options(&self) -> Option<&DropDownControlDisplayOptions>
The display options of a control.
sourcepub fn type(&self) -> Option<&SheetControlListType>
pub fn type(&self) -> Option<&SheetControlListType>
The type parameter name of the ParameterDropDownControl.
sourcepub fn selectable_values(&self) -> Option<&ParameterSelectableValues>
pub fn selectable_values(&self) -> Option<&ParameterSelectableValues>
A list of selectable values that are used in a control.
sourcepub fn cascading_control_configuration(
&self
) -> Option<&CascadingControlConfiguration>
pub fn cascading_control_configuration( &self ) -> Option<&CascadingControlConfiguration>
The values that are displayed in a control can be configured to only show values that are valid based on what's selected in other controls.
source§impl ParameterDropDownControl
impl ParameterDropDownControl
sourcepub fn builder() -> ParameterDropDownControlBuilder
pub fn builder() -> ParameterDropDownControlBuilder
Creates a new builder-style object to manufacture ParameterDropDownControl.
Trait Implementations§
source§impl Clone for ParameterDropDownControl
impl Clone for ParameterDropDownControl
source§fn clone(&self) -> ParameterDropDownControl
fn clone(&self) -> ParameterDropDownControl
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 Debug for ParameterDropDownControl
impl Debug for ParameterDropDownControl
source§impl PartialEq<ParameterDropDownControl> for ParameterDropDownControl
impl PartialEq<ParameterDropDownControl> for ParameterDropDownControl
source§fn eq(&self, other: &ParameterDropDownControl) -> bool
fn eq(&self, other: &ParameterDropDownControl) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for ParameterDropDownControl
Auto Trait Implementations§
impl RefUnwindSafe for ParameterDropDownControl
impl Send for ParameterDropDownControl
impl Sync for ParameterDropDownControl
impl Unpin for ParameterDropDownControl
impl UnwindSafe for ParameterDropDownControl
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more