#[non_exhaustive]pub struct TreeMapAggregatedFieldWells {
pub groups: Option<Vec<DimensionField>>,
pub sizes: Option<Vec<MeasureField>>,
pub colors: Option<Vec<MeasureField>>,
}Expand description
Aggregated field wells of a tree map.
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.groups: Option<Vec<DimensionField>>The group by field well of a tree map. Values are grouped based on group by fields.
sizes: Option<Vec<MeasureField>>The size field well of a tree map. Values are aggregated based on group by fields.
colors: Option<Vec<MeasureField>>The color field well of a tree map. Values are grouped by aggregations based on group by fields.
Implementations§
source§impl TreeMapAggregatedFieldWells
impl TreeMapAggregatedFieldWells
sourcepub fn groups(&self) -> Option<&[DimensionField]>
pub fn groups(&self) -> Option<&[DimensionField]>
The group by field well of a tree map. Values are grouped based on group by fields.
sourcepub fn sizes(&self) -> Option<&[MeasureField]>
pub fn sizes(&self) -> Option<&[MeasureField]>
The size field well of a tree map. Values are aggregated based on group by fields.
sourcepub fn colors(&self) -> Option<&[MeasureField]>
pub fn colors(&self) -> Option<&[MeasureField]>
The color field well of a tree map. Values are grouped by aggregations based on group by fields.
source§impl TreeMapAggregatedFieldWells
impl TreeMapAggregatedFieldWells
sourcepub fn builder() -> TreeMapAggregatedFieldWellsBuilder
pub fn builder() -> TreeMapAggregatedFieldWellsBuilder
Creates a new builder-style object to manufacture TreeMapAggregatedFieldWells.
Trait Implementations§
source§impl Clone for TreeMapAggregatedFieldWells
impl Clone for TreeMapAggregatedFieldWells
source§fn clone(&self) -> TreeMapAggregatedFieldWells
fn clone(&self) -> TreeMapAggregatedFieldWells
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 TreeMapAggregatedFieldWells
impl Debug for TreeMapAggregatedFieldWells
source§impl PartialEq<TreeMapAggregatedFieldWells> for TreeMapAggregatedFieldWells
impl PartialEq<TreeMapAggregatedFieldWells> for TreeMapAggregatedFieldWells
source§fn eq(&self, other: &TreeMapAggregatedFieldWells) -> bool
fn eq(&self, other: &TreeMapAggregatedFieldWells) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for TreeMapAggregatedFieldWells
Auto Trait Implementations§
impl RefUnwindSafe for TreeMapAggregatedFieldWells
impl Send for TreeMapAggregatedFieldWells
impl Sync for TreeMapAggregatedFieldWells
impl Unpin for TreeMapAggregatedFieldWells
impl UnwindSafe for TreeMapAggregatedFieldWells
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