Struct aws_sdk_quicksight::types::HistogramBinOptions
source · #[non_exhaustive]pub struct HistogramBinOptions { /* private fields */ }Expand description
The options that determine the presentation of histogram bins.
Implementations§
source§impl HistogramBinOptions
impl HistogramBinOptions
sourcepub fn selected_bin_type(&self) -> Option<&HistogramBinType>
pub fn selected_bin_type(&self) -> Option<&HistogramBinType>
The options that determine the selected bin type.
sourcepub fn bin_count(&self) -> Option<&BinCountOptions>
pub fn bin_count(&self) -> Option<&BinCountOptions>
The options that determine the bin count of a histogram.
sourcepub fn bin_width(&self) -> Option<&BinWidthOptions>
pub fn bin_width(&self) -> Option<&BinWidthOptions>
The options that determine the bin width of a histogram.
sourcepub fn start_value(&self) -> Option<f64>
pub fn start_value(&self) -> Option<f64>
The options that determine the bin start value.
source§impl HistogramBinOptions
impl HistogramBinOptions
sourcepub fn builder() -> HistogramBinOptionsBuilder
pub fn builder() -> HistogramBinOptionsBuilder
Creates a new builder-style object to manufacture HistogramBinOptions.
Trait Implementations§
source§impl Clone for HistogramBinOptions
impl Clone for HistogramBinOptions
source§fn clone(&self) -> HistogramBinOptions
fn clone(&self) -> HistogramBinOptions
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 HistogramBinOptions
impl Debug for HistogramBinOptions
source§impl PartialEq<HistogramBinOptions> for HistogramBinOptions
impl PartialEq<HistogramBinOptions> for HistogramBinOptions
source§fn eq(&self, other: &HistogramBinOptions) -> bool
fn eq(&self, other: &HistogramBinOptions) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for HistogramBinOptions
Auto Trait Implementations§
impl RefUnwindSafe for HistogramBinOptions
impl Send for HistogramBinOptions
impl Sync for HistogramBinOptions
impl Unpin for HistogramBinOptions
impl UnwindSafe for HistogramBinOptions
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