#[non_exhaustive]pub struct ScatterPlotFieldWellsBuilder { /* private fields */ }Expand description
A builder for ScatterPlotFieldWells.
Implementations§
source§impl ScatterPlotFieldWellsBuilder
impl ScatterPlotFieldWellsBuilder
sourcepub fn scatter_plot_categorically_aggregated_field_wells(
self,
input: ScatterPlotCategoricallyAggregatedFieldWells
) -> Self
pub fn scatter_plot_categorically_aggregated_field_wells( self, input: ScatterPlotCategoricallyAggregatedFieldWells ) -> Self
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 set_scatter_plot_categorically_aggregated_field_wells(
self,
input: Option<ScatterPlotCategoricallyAggregatedFieldWells>
) -> Self
pub fn set_scatter_plot_categorically_aggregated_field_wells( self, input: Option<ScatterPlotCategoricallyAggregatedFieldWells> ) -> Self
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 get_scatter_plot_categorically_aggregated_field_wells(
&self
) -> &Option<ScatterPlotCategoricallyAggregatedFieldWells>
pub fn get_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,
input: ScatterPlotUnaggregatedFieldWells
) -> Self
pub fn scatter_plot_unaggregated_field_wells( self, input: ScatterPlotUnaggregatedFieldWells ) -> Self
The unaggregated field wells of a scatter plot. The x and y-axes of these scatter plots are unaggregated.
sourcepub fn set_scatter_plot_unaggregated_field_wells(
self,
input: Option<ScatterPlotUnaggregatedFieldWells>
) -> Self
pub fn set_scatter_plot_unaggregated_field_wells( self, input: Option<ScatterPlotUnaggregatedFieldWells> ) -> Self
The unaggregated field wells of a scatter plot. The x and y-axes of these scatter plots are unaggregated.
sourcepub fn get_scatter_plot_unaggregated_field_wells(
&self
) -> &Option<ScatterPlotUnaggregatedFieldWells>
pub fn get_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.
sourcepub fn build(self) -> ScatterPlotFieldWells
pub fn build(self) -> ScatterPlotFieldWells
Consumes the builder and constructs a ScatterPlotFieldWells.
Trait Implementations§
source§impl Clone for ScatterPlotFieldWellsBuilder
impl Clone for ScatterPlotFieldWellsBuilder
source§fn clone(&self) -> ScatterPlotFieldWellsBuilder
fn clone(&self) -> ScatterPlotFieldWellsBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for ScatterPlotFieldWellsBuilder
impl Debug for ScatterPlotFieldWellsBuilder
source§impl Default for ScatterPlotFieldWellsBuilder
impl Default for ScatterPlotFieldWellsBuilder
source§fn default() -> ScatterPlotFieldWellsBuilder
fn default() -> ScatterPlotFieldWellsBuilder
source§impl PartialEq for ScatterPlotFieldWellsBuilder
impl PartialEq for ScatterPlotFieldWellsBuilder
source§fn eq(&self, other: &ScatterPlotFieldWellsBuilder) -> bool
fn eq(&self, other: &ScatterPlotFieldWellsBuilder) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for ScatterPlotFieldWellsBuilder
Auto Trait Implementations§
impl Freeze for ScatterPlotFieldWellsBuilder
impl RefUnwindSafe for ScatterPlotFieldWellsBuilder
impl Send for ScatterPlotFieldWellsBuilder
impl Sync for ScatterPlotFieldWellsBuilder
impl Unpin for ScatterPlotFieldWellsBuilder
impl UnwindSafe for ScatterPlotFieldWellsBuilder
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