Struct aws_sdk_quicksight::types::ScatterPlotFieldWells
source · #[non_exhaustive]pub struct ScatterPlotFieldWells {
pub scatter_plot_categorically_aggregated_field_wells: Option<ScatterPlotCategoricallyAggregatedFieldWells>,
pub scatter_plot_unaggregated_field_wells: Option<ScatterPlotUnaggregatedFieldWells>,
}Expand description
The field well configuration of a scatter plot.
This is a union type structure. For this structure to be valid, only one of the attributes can be defined.
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.scatter_plot_categorically_aggregated_field_wells: Option<ScatterPlotCategoricallyAggregatedFieldWells>The aggregated field wells of a scatter plot. The x and y-axes of scatter plots with aggregated field wells are aggregated by category, label, or both.
scatter_plot_unaggregated_field_wells: Option<ScatterPlotUnaggregatedFieldWells>The unaggregated field wells of a scatter plot. The x and y-axes of these scatter plots are unaggregated.
Implementations§
source§impl ScatterPlotFieldWells
impl ScatterPlotFieldWells
sourcepub fn scatter_plot_categorically_aggregated_field_wells(
&self
) -> Option<&ScatterPlotCategoricallyAggregatedFieldWells>
pub fn scatter_plot_categorically_aggregated_field_wells( &self ) -> Option<&ScatterPlotCategoricallyAggregatedFieldWells>
The aggregated field wells of a scatter plot. The x and y-axes of scatter plots with aggregated field wells are aggregated by category, label, or both.
sourcepub fn scatter_plot_unaggregated_field_wells(
&self
) -> Option<&ScatterPlotUnaggregatedFieldWells>
pub fn scatter_plot_unaggregated_field_wells( &self ) -> Option<&ScatterPlotUnaggregatedFieldWells>
The unaggregated field wells of a scatter plot. The x and y-axes of these scatter plots are unaggregated.
source§impl ScatterPlotFieldWells
impl ScatterPlotFieldWells
sourcepub fn builder() -> ScatterPlotFieldWellsBuilder
pub fn builder() -> ScatterPlotFieldWellsBuilder
Creates a new builder-style object to manufacture ScatterPlotFieldWells.
Trait Implementations§
source§impl Clone for ScatterPlotFieldWells
impl Clone for ScatterPlotFieldWells
source§fn clone(&self) -> ScatterPlotFieldWells
fn clone(&self) -> ScatterPlotFieldWells
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 ScatterPlotFieldWells
impl Debug for ScatterPlotFieldWells
source§impl PartialEq for ScatterPlotFieldWells
impl PartialEq for ScatterPlotFieldWells
source§fn eq(&self, other: &ScatterPlotFieldWells) -> bool
fn eq(&self, other: &ScatterPlotFieldWells) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for ScatterPlotFieldWells
Auto Trait Implementations§
impl Freeze for ScatterPlotFieldWells
impl RefUnwindSafe for ScatterPlotFieldWells
impl Send for ScatterPlotFieldWells
impl Sync for ScatterPlotFieldWells
impl Unpin for ScatterPlotFieldWells
impl UnwindSafe for ScatterPlotFieldWells
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.