#[non_exhaustive]pub struct ScatterPlotUnaggregatedFieldWellsBuilder { /* private fields */ }Expand description
A builder for ScatterPlotUnaggregatedFieldWells.
Implementations§
source§impl ScatterPlotUnaggregatedFieldWellsBuilder
impl ScatterPlotUnaggregatedFieldWellsBuilder
sourcepub fn x_axis(self, input: DimensionField) -> Self
pub fn x_axis(self, input: DimensionField) -> Self
Appends an item to x_axis.
To override the contents of this collection use set_x_axis.
The x-axis field well of a scatter plot.
The x-axis is a dimension field and cannot be aggregated.
sourcepub fn set_x_axis(self, input: Option<Vec<DimensionField>>) -> Self
pub fn set_x_axis(self, input: Option<Vec<DimensionField>>) -> Self
The x-axis field well of a scatter plot.
The x-axis is a dimension field and cannot be aggregated.
sourcepub fn get_x_axis(&self) -> &Option<Vec<DimensionField>>
pub fn get_x_axis(&self) -> &Option<Vec<DimensionField>>
The x-axis field well of a scatter plot.
The x-axis is a dimension field and cannot be aggregated.
sourcepub fn y_axis(self, input: DimensionField) -> Self
pub fn y_axis(self, input: DimensionField) -> Self
Appends an item to y_axis.
To override the contents of this collection use set_y_axis.
The y-axis field well of a scatter plot.
The y-axis is a dimension field and cannot be aggregated.
sourcepub fn set_y_axis(self, input: Option<Vec<DimensionField>>) -> Self
pub fn set_y_axis(self, input: Option<Vec<DimensionField>>) -> Self
The y-axis field well of a scatter plot.
The y-axis is a dimension field and cannot be aggregated.
sourcepub fn get_y_axis(&self) -> &Option<Vec<DimensionField>>
pub fn get_y_axis(&self) -> &Option<Vec<DimensionField>>
The y-axis field well of a scatter plot.
The y-axis is a dimension field and cannot be aggregated.
sourcepub fn size(self, input: MeasureField) -> Self
pub fn size(self, input: MeasureField) -> Self
Appends an item to size.
To override the contents of this collection use set_size.
The size field well of a scatter plot.
sourcepub fn set_size(self, input: Option<Vec<MeasureField>>) -> Self
pub fn set_size(self, input: Option<Vec<MeasureField>>) -> Self
The size field well of a scatter plot.
sourcepub fn get_size(&self) -> &Option<Vec<MeasureField>>
pub fn get_size(&self) -> &Option<Vec<MeasureField>>
The size field well of a scatter plot.
sourcepub fn category(self, input: DimensionField) -> Self
pub fn category(self, input: DimensionField) -> Self
Appends an item to category.
To override the contents of this collection use set_category.
The category field well of a scatter plot.
sourcepub fn set_category(self, input: Option<Vec<DimensionField>>) -> Self
pub fn set_category(self, input: Option<Vec<DimensionField>>) -> Self
The category field well of a scatter plot.
sourcepub fn get_category(&self) -> &Option<Vec<DimensionField>>
pub fn get_category(&self) -> &Option<Vec<DimensionField>>
The category field well of a scatter plot.
sourcepub fn label(self, input: DimensionField) -> Self
pub fn label(self, input: DimensionField) -> Self
Appends an item to label.
To override the contents of this collection use set_label.
The label field well of a scatter plot.
sourcepub fn set_label(self, input: Option<Vec<DimensionField>>) -> Self
pub fn set_label(self, input: Option<Vec<DimensionField>>) -> Self
The label field well of a scatter plot.
sourcepub fn get_label(&self) -> &Option<Vec<DimensionField>>
pub fn get_label(&self) -> &Option<Vec<DimensionField>>
The label field well of a scatter plot.
sourcepub fn build(self) -> ScatterPlotUnaggregatedFieldWells
pub fn build(self) -> ScatterPlotUnaggregatedFieldWells
Consumes the builder and constructs a ScatterPlotUnaggregatedFieldWells.
Trait Implementations§
source§impl Clone for ScatterPlotUnaggregatedFieldWellsBuilder
impl Clone for ScatterPlotUnaggregatedFieldWellsBuilder
source§fn clone(&self) -> ScatterPlotUnaggregatedFieldWellsBuilder
fn clone(&self) -> ScatterPlotUnaggregatedFieldWellsBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for ScatterPlotUnaggregatedFieldWellsBuilder
impl Default for ScatterPlotUnaggregatedFieldWellsBuilder
source§fn default() -> ScatterPlotUnaggregatedFieldWellsBuilder
fn default() -> ScatterPlotUnaggregatedFieldWellsBuilder
source§impl PartialEq for ScatterPlotUnaggregatedFieldWellsBuilder
impl PartialEq for ScatterPlotUnaggregatedFieldWellsBuilder
source§fn eq(&self, other: &ScatterPlotUnaggregatedFieldWellsBuilder) -> bool
fn eq(&self, other: &ScatterPlotUnaggregatedFieldWellsBuilder) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for ScatterPlotUnaggregatedFieldWellsBuilder
Auto Trait Implementations§
impl Freeze for ScatterPlotUnaggregatedFieldWellsBuilder
impl RefUnwindSafe for ScatterPlotUnaggregatedFieldWellsBuilder
impl Send for ScatterPlotUnaggregatedFieldWellsBuilder
impl Sync for ScatterPlotUnaggregatedFieldWellsBuilder
impl Unpin for ScatterPlotUnaggregatedFieldWellsBuilder
impl UnwindSafe for ScatterPlotUnaggregatedFieldWellsBuilder
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
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>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more