#[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 ==.impl StructuralPartialEq for GeospatialMapAggregatedFieldWells
Auto Trait Implementations§
impl Freeze for GeospatialMapAggregatedFieldWells
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit)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