#[non_exhaustive]pub struct ScatterPlotCategoricallyAggregatedFieldWells {
pub x_axis: Option<Vec<MeasureField>>,
pub y_axis: Option<Vec<MeasureField>>,
pub category: Option<Vec<DimensionField>>,
pub size: Option<Vec<MeasureField>>,
pub label: Option<Vec<DimensionField>>,
}Expand description
The aggregated field well of a scatter plot.
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.x_axis: Option<Vec<MeasureField>>The x-axis field well of a scatter plot.
The x-axis is aggregated by category.
y_axis: Option<Vec<MeasureField>>The y-axis field well of a scatter plot.
The y-axis is aggregated by category.
category: Option<Vec<DimensionField>>The category field well of a scatter plot.
size: Option<Vec<MeasureField>>The size field well of a scatter plot.
label: Option<Vec<DimensionField>>The label field well of a scatter plot.
Implementations§
source§impl ScatterPlotCategoricallyAggregatedFieldWells
impl ScatterPlotCategoricallyAggregatedFieldWells
sourcepub fn x_axis(&self) -> Option<&[MeasureField]>
pub fn x_axis(&self) -> Option<&[MeasureField]>
The x-axis field well of a scatter plot.
The x-axis is aggregated by category.
sourcepub fn y_axis(&self) -> Option<&[MeasureField]>
pub fn y_axis(&self) -> Option<&[MeasureField]>
The y-axis field well of a scatter plot.
The y-axis is aggregated by category.
sourcepub fn category(&self) -> Option<&[DimensionField]>
pub fn category(&self) -> Option<&[DimensionField]>
The category field well of a scatter plot.
sourcepub fn size(&self) -> Option<&[MeasureField]>
pub fn size(&self) -> Option<&[MeasureField]>
The size field well of a scatter plot.
sourcepub fn label(&self) -> Option<&[DimensionField]>
pub fn label(&self) -> Option<&[DimensionField]>
The label field well of a scatter plot.
source§impl ScatterPlotCategoricallyAggregatedFieldWells
impl ScatterPlotCategoricallyAggregatedFieldWells
sourcepub fn builder() -> ScatterPlotCategoricallyAggregatedFieldWellsBuilder
pub fn builder() -> ScatterPlotCategoricallyAggregatedFieldWellsBuilder
Creates a new builder-style object to manufacture ScatterPlotCategoricallyAggregatedFieldWells.
Trait Implementations§
source§impl Clone for ScatterPlotCategoricallyAggregatedFieldWells
impl Clone for ScatterPlotCategoricallyAggregatedFieldWells
source§fn clone(&self) -> ScatterPlotCategoricallyAggregatedFieldWells
fn clone(&self) -> ScatterPlotCategoricallyAggregatedFieldWells
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 PartialEq<ScatterPlotCategoricallyAggregatedFieldWells> for ScatterPlotCategoricallyAggregatedFieldWells
impl PartialEq<ScatterPlotCategoricallyAggregatedFieldWells> for ScatterPlotCategoricallyAggregatedFieldWells
source§fn eq(&self, other: &ScatterPlotCategoricallyAggregatedFieldWells) -> bool
fn eq(&self, other: &ScatterPlotCategoricallyAggregatedFieldWells) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for ScatterPlotCategoricallyAggregatedFieldWells
Auto Trait Implementations§
impl RefUnwindSafe for ScatterPlotCategoricallyAggregatedFieldWells
impl Send for ScatterPlotCategoricallyAggregatedFieldWells
impl Sync for ScatterPlotCategoricallyAggregatedFieldWells
impl Unpin for ScatterPlotCategoricallyAggregatedFieldWells
impl UnwindSafe for ScatterPlotCategoricallyAggregatedFieldWells
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