#[non_exhaustive]pub struct GeospatialPointStyleOptions {
pub selected_point_style: Option<GeospatialSelectedPointStyle>,
pub cluster_marker_configuration: Option<ClusterMarkerConfiguration>,
pub heatmap_configuration: Option<GeospatialHeatmapConfiguration>,
}
Expand description
The point style of the 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.selected_point_style: Option<GeospatialSelectedPointStyle>
The selected point styles (point, cluster) of the geospatial map.
cluster_marker_configuration: Option<ClusterMarkerConfiguration>
The cluster marker configuration of the geospatial point style.
heatmap_configuration: Option<GeospatialHeatmapConfiguration>
The heatmap configuration of the geospatial point style.
Implementations§
source§impl GeospatialPointStyleOptions
impl GeospatialPointStyleOptions
sourcepub fn selected_point_style(&self) -> Option<&GeospatialSelectedPointStyle>
pub fn selected_point_style(&self) -> Option<&GeospatialSelectedPointStyle>
The selected point styles (point, cluster) of the geospatial map.
sourcepub fn cluster_marker_configuration(
&self
) -> Option<&ClusterMarkerConfiguration>
pub fn cluster_marker_configuration( &self ) -> Option<&ClusterMarkerConfiguration>
The cluster marker configuration of the geospatial point style.
sourcepub fn heatmap_configuration(&self) -> Option<&GeospatialHeatmapConfiguration>
pub fn heatmap_configuration(&self) -> Option<&GeospatialHeatmapConfiguration>
The heatmap configuration of the geospatial point style.
source§impl GeospatialPointStyleOptions
impl GeospatialPointStyleOptions
sourcepub fn builder() -> GeospatialPointStyleOptionsBuilder
pub fn builder() -> GeospatialPointStyleOptionsBuilder
Creates a new builder-style object to manufacture GeospatialPointStyleOptions
.
Trait Implementations§
source§impl Clone for GeospatialPointStyleOptions
impl Clone for GeospatialPointStyleOptions
source§fn clone(&self) -> GeospatialPointStyleOptions
fn clone(&self) -> GeospatialPointStyleOptions
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 Debug for GeospatialPointStyleOptions
impl Debug for GeospatialPointStyleOptions
source§impl PartialEq for GeospatialPointStyleOptions
impl PartialEq for GeospatialPointStyleOptions
source§fn eq(&self, other: &GeospatialPointStyleOptions) -> bool
fn eq(&self, other: &GeospatialPointStyleOptions) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for GeospatialPointStyleOptions
Auto Trait Implementations§
impl RefUnwindSafe for GeospatialPointStyleOptions
impl Send for GeospatialPointStyleOptions
impl Sync for GeospatialPointStyleOptions
impl Unpin for GeospatialPointStyleOptions
impl UnwindSafe for GeospatialPointStyleOptions
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
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>
Creates a shared type from an unshared type.