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