[][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())
                            .point(0.0, 0.0)
                            .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(&mut self, x: f64, y: f64)[src]

Add a point.

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

Add a point, taking ownership (for method chaining).

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

Complete the current geometry (for multilinestring / multipolygon).

pub fn complete(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
    U: Into<T>, 
[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> Any for T where
    T: 'static + ?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.