#[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
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) -> &[DimensionField]
pub fn geospatial(&self) -> &[DimensionField]
The geospatial field wells of a geospatial map. Values are grouped by geospatial fields.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .geospatial.is_none()
.
sourcepub fn values(&self) -> &[MeasureField]
pub fn values(&self) -> &[MeasureField]
The size field wells of a geospatial map. Values are aggregated based on geospatial fields.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .values.is_none()
.
sourcepub fn colors(&self) -> &[DimensionField]
pub fn colors(&self) -> &[DimensionField]
The color field wells of a geospatial map.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .colors.is_none()
.
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
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for GeospatialMapAggregatedFieldWells
impl PartialEq for GeospatialMapAggregatedFieldWells
source§fn eq(&self, other: &GeospatialMapAggregatedFieldWells) -> bool
fn eq(&self, other: &GeospatialMapAggregatedFieldWells) -> bool
self
and other
values to be equal, and is used
by ==
.