#[non_exhaustive]pub struct GeospatialMapConfiguration {
pub field_wells: Option<GeospatialMapFieldWells>,
pub legend: Option<LegendOptions>,
pub tooltip: Option<TooltipOptions>,
pub window_options: Option<GeospatialWindowOptions>,
pub map_style_options: Option<GeospatialMapStyleOptions>,
pub point_style_options: Option<GeospatialPointStyleOptions>,
pub visual_palette: Option<VisualPalette>,
pub interactions: Option<VisualInteractionOptions>,
}
Expand description
The configuration of a GeospatialMapVisual
.
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.field_wells: Option<GeospatialMapFieldWells>
The field wells of the visual.
legend: Option<LegendOptions>
The legend display setup of the visual.
tooltip: Option<TooltipOptions>
The tooltip display setup of the visual.
window_options: Option<GeospatialWindowOptions>
The window options of the geospatial map.
map_style_options: Option<GeospatialMapStyleOptions>
The map style options of the geospatial map.
point_style_options: Option<GeospatialPointStyleOptions>
The point style options of the geospatial map.
visual_palette: Option<VisualPalette>
The visual display options for the visual palette.
interactions: Option<VisualInteractionOptions>
The general visual interactions setup for a visual.
Implementations§
source§impl GeospatialMapConfiguration
impl GeospatialMapConfiguration
sourcepub fn field_wells(&self) -> Option<&GeospatialMapFieldWells>
pub fn field_wells(&self) -> Option<&GeospatialMapFieldWells>
The field wells of the visual.
sourcepub fn legend(&self) -> Option<&LegendOptions>
pub fn legend(&self) -> Option<&LegendOptions>
The legend display setup of the visual.
sourcepub fn tooltip(&self) -> Option<&TooltipOptions>
pub fn tooltip(&self) -> Option<&TooltipOptions>
The tooltip display setup of the visual.
sourcepub fn window_options(&self) -> Option<&GeospatialWindowOptions>
pub fn window_options(&self) -> Option<&GeospatialWindowOptions>
The window options of the geospatial map.
sourcepub fn map_style_options(&self) -> Option<&GeospatialMapStyleOptions>
pub fn map_style_options(&self) -> Option<&GeospatialMapStyleOptions>
The map style options of the geospatial map.
sourcepub fn point_style_options(&self) -> Option<&GeospatialPointStyleOptions>
pub fn point_style_options(&self) -> Option<&GeospatialPointStyleOptions>
The point style options of the geospatial map.
sourcepub fn visual_palette(&self) -> Option<&VisualPalette>
pub fn visual_palette(&self) -> Option<&VisualPalette>
The visual display options for the visual palette.
sourcepub fn interactions(&self) -> Option<&VisualInteractionOptions>
pub fn interactions(&self) -> Option<&VisualInteractionOptions>
The general visual interactions setup for a visual.
source§impl GeospatialMapConfiguration
impl GeospatialMapConfiguration
sourcepub fn builder() -> GeospatialMapConfigurationBuilder
pub fn builder() -> GeospatialMapConfigurationBuilder
Creates a new builder-style object to manufacture GeospatialMapConfiguration
.
Trait Implementations§
source§impl Clone for GeospatialMapConfiguration
impl Clone for GeospatialMapConfiguration
source§fn clone(&self) -> GeospatialMapConfiguration
fn clone(&self) -> GeospatialMapConfiguration
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for GeospatialMapConfiguration
impl Debug for GeospatialMapConfiguration
impl StructuralPartialEq for GeospatialMapConfiguration
Auto Trait Implementations§
impl Freeze for GeospatialMapConfiguration
impl RefUnwindSafe for GeospatialMapConfiguration
impl Send for GeospatialMapConfiguration
impl Sync for GeospatialMapConfiguration
impl Unpin for GeospatialMapConfiguration
impl UnwindSafe for GeospatialMapConfiguration
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§unsafe fn clone_to_uninit(&self, dst: *mut T)
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