Struct aws_sdk_quicksight::model::FilterSliderControl
source · #[non_exhaustive]pub struct FilterSliderControl { /* 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 FilterSliderControl
impl FilterSliderControl
sourcepub fn filter_control_id(&self) -> Option<&str>
pub fn filter_control_id(&self) -> Option<&str>
The ID of the FilterSliderControl
.
sourcepub fn source_filter_id(&self) -> Option<&str>
pub fn source_filter_id(&self) -> Option<&str>
The source filter ID of the FilterSliderControl
.
sourcepub fn display_options(&self) -> Option<&SliderControlDisplayOptions>
pub fn display_options(&self) -> Option<&SliderControlDisplayOptions>
The display options of a control.
sourcepub fn type(&self) -> Option<&SheetControlSliderType>
pub fn type(&self) -> Option<&SheetControlSliderType>
The type of FilterSliderControl
. Choose one of the following options:
-
SINGLE_POINT
: Filter against(equals) a single data point. -
RANGE
: Filter data that is in a specified range.
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 FilterSliderControl
impl FilterSliderControl
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture FilterSliderControl
.
Trait Implementations§
source§impl Clone for FilterSliderControl
impl Clone for FilterSliderControl
source§fn clone(&self) -> FilterSliderControl
fn clone(&self) -> FilterSliderControl
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 FilterSliderControl
impl Debug for FilterSliderControl
source§impl PartialEq<FilterSliderControl> for FilterSliderControl
impl PartialEq<FilterSliderControl> for FilterSliderControl
source§fn eq(&self, other: &FilterSliderControl) -> bool
fn eq(&self, other: &FilterSliderControl) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.