pub enum VectorRenderMode {
Generic,
Fill,
Line,
Circle,
Heatmap,
FillExtrusion,
Symbol,
}Expand description
High-level vector rendering family.
Variants§
Generic
Legacy generic tessellation that renders polygons, lines, and points.
Fill
Polygon fills.
Line
Line-only rendering.
Circle
Point circles.
Heatmap
Point heatmap blobs.
FillExtrusion
Polygon extrusion into simple 3D prisms.
Symbol
Basic point symbols rendered as simple haloed markers.
Trait Implementations§
Source§impl Clone for VectorRenderMode
impl Clone for VectorRenderMode
Source§fn clone(&self) -> VectorRenderMode
fn clone(&self) -> VectorRenderMode
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for VectorRenderMode
Source§impl Debug for VectorRenderMode
impl Debug for VectorRenderMode
Source§impl Default for VectorRenderMode
impl Default for VectorRenderMode
Source§fn default() -> VectorRenderMode
fn default() -> VectorRenderMode
Returns the “default value” for a type. Read more
impl Eq for VectorRenderMode
Source§impl PartialEq for VectorRenderMode
impl PartialEq for VectorRenderMode
Source§fn eq(&self, other: &VectorRenderMode) -> bool
fn eq(&self, other: &VectorRenderMode) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for VectorRenderMode
Auto Trait Implementations§
impl Freeze for VectorRenderMode
impl RefUnwindSafe for VectorRenderMode
impl Send for VectorRenderMode
impl Sync for VectorRenderMode
impl Unpin for VectorRenderMode
impl UnsafeUnpin for VectorRenderMode
impl UnwindSafe for VectorRenderMode
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