wkt 0.14.0

Rust read/write support for well-known text (WKT)
Documentation
1
2
3
4
5
6
7
8
9
10
11
/// The geometry type of the WKT object
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash)]
pub enum GeometryType {
    Point,
    LineString,
    Polygon,
    MultiPoint,
    MultiLineString,
    MultiPolygon,
    GeometryCollection,
}