Struct aws_sdk_quicksight::types::GaugeChartConfiguration
source · #[non_exhaustive]pub struct GaugeChartConfiguration {
pub field_wells: Option<GaugeChartFieldWells>,
pub gauge_chart_options: Option<GaugeChartOptions>,
pub data_labels: Option<DataLabelOptions>,
pub tooltip_options: Option<TooltipOptions>,
pub visual_palette: Option<VisualPalette>,
}
Expand description
The configuration of a GaugeChartVisual
.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.field_wells: Option<GaugeChartFieldWells>
The field well configuration of a GaugeChartVisual
.
gauge_chart_options: Option<GaugeChartOptions>
The options that determine the presentation of the GaugeChartVisual
.
data_labels: Option<DataLabelOptions>
The data label configuration of a GaugeChartVisual
.
tooltip_options: Option<TooltipOptions>
The tooltip configuration of a GaugeChartVisual
.
visual_palette: Option<VisualPalette>
The visual palette configuration of a GaugeChartVisual
.
Implementations§
source§impl GaugeChartConfiguration
impl GaugeChartConfiguration
sourcepub fn field_wells(&self) -> Option<&GaugeChartFieldWells>
pub fn field_wells(&self) -> Option<&GaugeChartFieldWells>
The field well configuration of a GaugeChartVisual
.
sourcepub fn gauge_chart_options(&self) -> Option<&GaugeChartOptions>
pub fn gauge_chart_options(&self) -> Option<&GaugeChartOptions>
The options that determine the presentation of the GaugeChartVisual
.
sourcepub fn data_labels(&self) -> Option<&DataLabelOptions>
pub fn data_labels(&self) -> Option<&DataLabelOptions>
The data label configuration of a GaugeChartVisual
.
sourcepub fn tooltip_options(&self) -> Option<&TooltipOptions>
pub fn tooltip_options(&self) -> Option<&TooltipOptions>
The tooltip configuration of a GaugeChartVisual
.
sourcepub fn visual_palette(&self) -> Option<&VisualPalette>
pub fn visual_palette(&self) -> Option<&VisualPalette>
The visual palette configuration of a GaugeChartVisual
.
source§impl GaugeChartConfiguration
impl GaugeChartConfiguration
sourcepub fn builder() -> GaugeChartConfigurationBuilder
pub fn builder() -> GaugeChartConfigurationBuilder
Creates a new builder-style object to manufacture GaugeChartConfiguration
.
Trait Implementations§
source§impl Clone for GaugeChartConfiguration
impl Clone for GaugeChartConfiguration
source§fn clone(&self) -> GaugeChartConfiguration
fn clone(&self) -> GaugeChartConfiguration
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 GaugeChartConfiguration
impl Debug for GaugeChartConfiguration
source§impl PartialEq for GaugeChartConfiguration
impl PartialEq for GaugeChartConfiguration
source§fn eq(&self, other: &GaugeChartConfiguration) -> bool
fn eq(&self, other: &GaugeChartConfiguration) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for GaugeChartConfiguration
Auto Trait Implementations§
impl RefUnwindSafe for GaugeChartConfiguration
impl Send for GaugeChartConfiguration
impl Sync for GaugeChartConfiguration
impl Unpin for GaugeChartConfiguration
impl UnwindSafe for GaugeChartConfiguration
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Creates a shared type from an unshared type.