pub enum GeometryColumn {
Point(Vec<Coord>),
LineString(Vec<Vec<Coord>>),
Polygon(Vec<Vec<Vec<Coord>>>),
}Expand description
Geometry for one layer, grouped by kind. Every feature in a layer shares one kind — the tiler emits a separate layer per geometry type.
Variants§
Point(Vec<Coord>)
One coordinate per feature.
LineString(Vec<Vec<Coord>>)
A vertex list per feature.
Polygon(Vec<Vec<Vec<Coord>>>)
A list of rings per feature (ring 0 is the exterior).
Implementations§
Source§impl GeometryColumn
impl GeometryColumn
Sourcepub fn kind(&self) -> GeometryType
pub fn kind(&self) -> GeometryType
The matching GeometryType.
Trait Implementations§
Source§impl Clone for GeometryColumn
impl Clone for GeometryColumn
Source§fn clone(&self) -> GeometryColumn
fn clone(&self) -> GeometryColumn
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 moreAuto Trait Implementations§
impl Freeze for GeometryColumn
impl RefUnwindSafe for GeometryColumn
impl Send for GeometryColumn
impl Sync for GeometryColumn
impl Unpin for GeometryColumn
impl UnsafeUnpin for GeometryColumn
impl UnwindSafe for GeometryColumn
Blanket Implementations§
impl<T> Allocation for T
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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>
Converts
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>
Converts
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