[][src]Struct mvt::GeomEncoder

pub struct GeomEncoder { /* fields omitted */ }

Encoder for Feature geometry. This can consist of Point, Linestring or Polygon data.

Example

let geom_data = GeomEncoder::new(GeomType::Point, Transform::new())
                            .add_point(0.0, 0.0)
                            .add_point(10.0, 0.0)
                            .encode()?;

Methods

impl GeomEncoder
[src]

pub fn new(geom_tp: GeomType, transform: Transform) -> Self
[src]

Create a new geometry encoder.

  • geom_tp Geometry type.
  • transform Transform to apply to geometry.

pub fn add_point(self, x: f64, y: f64) -> Self
[src]

Add a point.

pub fn complete_geom(self) -> Result<Self, Error>
[src]

Complete the current geometry (for multilinestring / multipolygon).

pub fn encode(self) -> Result<GeomData, Error>
[src]

Encode the geometry data, consuming the encoder.

Auto Trait Implementations

impl Send for GeomEncoder

impl Sync for GeomEncoder

Blanket Implementations

impl<T> From for T
[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]