#[non_exhaustive]pub struct TreeMapAggregatedFieldWellsBuilder { /* private fields */ }Expand description
A builder for TreeMapAggregatedFieldWells.
Implementations§
source§impl TreeMapAggregatedFieldWellsBuilder
impl TreeMapAggregatedFieldWellsBuilder
sourcepub fn groups(self, input: DimensionField) -> Self
pub fn groups(self, input: DimensionField) -> Self
Appends an item to groups.
To override the contents of this collection use set_groups.
The group by field well of a tree map. Values are grouped based on group by fields.
sourcepub fn set_groups(self, input: Option<Vec<DimensionField>>) -> Self
pub fn set_groups(self, input: Option<Vec<DimensionField>>) -> Self
The group by field well of a tree map. Values are grouped based on group by fields.
sourcepub fn get_groups(&self) -> &Option<Vec<DimensionField>>
pub fn get_groups(&self) -> &Option<Vec<DimensionField>>
The group by field well of a tree map. Values are grouped based on group by fields.
sourcepub fn sizes(self, input: MeasureField) -> Self
pub fn sizes(self, input: MeasureField) -> Self
Appends an item to sizes.
To override the contents of this collection use set_sizes.
The size field well of a tree map. Values are aggregated based on group by fields.
sourcepub fn set_sizes(self, input: Option<Vec<MeasureField>>) -> Self
pub fn set_sizes(self, input: Option<Vec<MeasureField>>) -> Self
The size field well of a tree map. Values are aggregated based on group by fields.
sourcepub fn get_sizes(&self) -> &Option<Vec<MeasureField>>
pub fn get_sizes(&self) -> &Option<Vec<MeasureField>>
The size field well of a tree map. Values are aggregated based on group by fields.
sourcepub fn colors(self, input: MeasureField) -> Self
pub fn colors(self, input: MeasureField) -> Self
Appends an item to colors.
To override the contents of this collection use set_colors.
The color field well of a tree map. Values are grouped by aggregations based on group by fields.
sourcepub fn set_colors(self, input: Option<Vec<MeasureField>>) -> Self
pub fn set_colors(self, input: Option<Vec<MeasureField>>) -> Self
The color field well of a tree map. Values are grouped by aggregations based on group by fields.
sourcepub fn get_colors(&self) -> &Option<Vec<MeasureField>>
pub fn get_colors(&self) -> &Option<Vec<MeasureField>>
The color field well of a tree map. Values are grouped by aggregations based on group by fields.
sourcepub fn build(self) -> TreeMapAggregatedFieldWells
pub fn build(self) -> TreeMapAggregatedFieldWells
Consumes the builder and constructs a TreeMapAggregatedFieldWells.
Trait Implementations§
source§impl Clone for TreeMapAggregatedFieldWellsBuilder
impl Clone for TreeMapAggregatedFieldWellsBuilder
source§fn clone(&self) -> TreeMapAggregatedFieldWellsBuilder
fn clone(&self) -> TreeMapAggregatedFieldWellsBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for TreeMapAggregatedFieldWellsBuilder
impl Default for TreeMapAggregatedFieldWellsBuilder
source§fn default() -> TreeMapAggregatedFieldWellsBuilder
fn default() -> TreeMapAggregatedFieldWellsBuilder
source§impl PartialEq for TreeMapAggregatedFieldWellsBuilder
impl PartialEq for TreeMapAggregatedFieldWellsBuilder
source§fn eq(&self, other: &TreeMapAggregatedFieldWellsBuilder) -> bool
fn eq(&self, other: &TreeMapAggregatedFieldWellsBuilder) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for TreeMapAggregatedFieldWellsBuilder
Auto Trait Implementations§
impl Freeze for TreeMapAggregatedFieldWellsBuilder
impl RefUnwindSafe for TreeMapAggregatedFieldWellsBuilder
impl Send for TreeMapAggregatedFieldWellsBuilder
impl Sync for TreeMapAggregatedFieldWellsBuilder
impl Unpin for TreeMapAggregatedFieldWellsBuilder
impl UnwindSafe for TreeMapAggregatedFieldWellsBuilder
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