Struct aws_sdk_quicksight::types::ScatterPlotFieldWells
source · #[non_exhaustive]pub struct ScatterPlotFieldWells { /* private fields */ }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.
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. Scatter plots that have a field in the category (group/color) field will have aggregated field wells. The x and y-axes of these scatter plots are aggregated by category.
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. Scatter plots without a category field well have unaggregated field wells. 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<ScatterPlotFieldWells> for ScatterPlotFieldWells
impl PartialEq<ScatterPlotFieldWells> 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 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