Enum geoq_wkt::Geometry[][src]

pub enum Geometry<T: CoordType> {
    Point(Point<T>),
    LineString(LineString<T>),
    Polygon(Polygon<T>),
    MultiPoint(MultiPoint<T>),
    MultiLineString(MultiLineString<T>),
    MultiPolygon(MultiPolygon<T>),
    GeometryCollection(GeometryCollection<T>),
}

Variants

Trait Implementations

impl<T: CoordinateType + CoordType> ToGeo<T> for Geometry<T>
[src]

impl<T: CoordType> Display for Geometry<T>
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl<T> Send for Geometry<T> where
    T: Send

impl<T> Sync for Geometry<T> where
    T: Sync