Struct aws_sdk_quicksight::model::ParameterSliderControl
source · #[non_exhaustive]pub struct ParameterSliderControl { /* private fields */ }
Expand description
A control to display a horizontal toggle bar. This is used to change a value by sliding the toggle.
Implementations§
source§impl ParameterSliderControl
impl ParameterSliderControl
sourcepub fn parameter_control_id(&self) -> Option<&str>
pub fn parameter_control_id(&self) -> Option<&str>
The ID of the ParameterSliderControl
.
sourcepub fn source_parameter_name(&self) -> Option<&str>
pub fn source_parameter_name(&self) -> Option<&str>
The source parameter name of the ParameterSliderControl
.
sourcepub fn display_options(&self) -> Option<&SliderControlDisplayOptions>
pub fn display_options(&self) -> Option<&SliderControlDisplayOptions>
The display options of a control.
sourcepub fn maximum_value(&self) -> f64
pub fn maximum_value(&self) -> f64
The smaller value that is displayed at the left of the slider.
sourcepub fn minimum_value(&self) -> f64
pub fn minimum_value(&self) -> f64
The larger value that is displayed at the right of the slider.
source§impl ParameterSliderControl
impl ParameterSliderControl
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ParameterSliderControl
.
Trait Implementations§
source§impl Clone for ParameterSliderControl
impl Clone for ParameterSliderControl
source§fn clone(&self) -> ParameterSliderControl
fn clone(&self) -> ParameterSliderControl
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 ParameterSliderControl
impl Debug for ParameterSliderControl
source§impl PartialEq<ParameterSliderControl> for ParameterSliderControl
impl PartialEq<ParameterSliderControl> for ParameterSliderControl
source§fn eq(&self, other: &ParameterSliderControl) -> bool
fn eq(&self, other: &ParameterSliderControl) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.