#[non_exhaustive]pub struct FilledMapAggregatedFieldWells {
pub geospatial: Option<Vec<DimensionField>>,
pub values: Option<Vec<MeasureField>>,
}Expand description
The aggregated field well of the filled 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 aggregated location field well of the filled map. Values are grouped by location fields.
values: Option<Vec<MeasureField>>The aggregated color field well of a filled map. Values are aggregated based on location fields.
Implementations§
source§impl FilledMapAggregatedFieldWells
impl FilledMapAggregatedFieldWells
sourcepub fn geospatial(&self) -> &[DimensionField]
pub fn geospatial(&self) -> &[DimensionField]
The aggregated location field well of the filled map. Values are grouped by location 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 aggregated color field well of a filled map. Values are aggregated based on location 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().
source§impl FilledMapAggregatedFieldWells
impl FilledMapAggregatedFieldWells
sourcepub fn builder() -> FilledMapAggregatedFieldWellsBuilder
pub fn builder() -> FilledMapAggregatedFieldWellsBuilder
Creates a new builder-style object to manufacture FilledMapAggregatedFieldWells.
Trait Implementations§
source§impl Clone for FilledMapAggregatedFieldWells
impl Clone for FilledMapAggregatedFieldWells
source§fn clone(&self) -> FilledMapAggregatedFieldWells
fn clone(&self) -> FilledMapAggregatedFieldWells
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl PartialEq for FilledMapAggregatedFieldWells
impl PartialEq for FilledMapAggregatedFieldWells
source§fn eq(&self, other: &FilledMapAggregatedFieldWells) -> bool
fn eq(&self, other: &FilledMapAggregatedFieldWells) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for FilledMapAggregatedFieldWells
Auto Trait Implementations§
impl Freeze for FilledMapAggregatedFieldWells
impl RefUnwindSafe for FilledMapAggregatedFieldWells
impl Send for FilledMapAggregatedFieldWells
impl Sync for FilledMapAggregatedFieldWells
impl Unpin for FilledMapAggregatedFieldWells
impl UnwindSafe for FilledMapAggregatedFieldWells
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