Enum geo_types::Geometry [−][src]
pub enum Geometry<T> where
T: CoordinateType, { Point(Point<T>), Line(Line<T>), LineString(LineString<T>), Polygon(Polygon<T>), MultiPoint(MultiPoint<T>), MultiLineString(MultiLineString<T>), MultiPolygon(MultiPolygon<T>), GeometryCollection(GeometryCollection<T>), }
An enum representing any possible geometry type.
All Geo types can be converted to a Geometry member using .into() (as part of the
std::convert::Into pattern).
Variants
Point(Point<T>)Line(Line<T>)LineString(LineString<T>)Polygon(Polygon<T>)MultiPoint(MultiPoint<T>)MultiLineString(MultiLineString<T>)MultiPolygon(MultiPolygon<T>)GeometryCollection(GeometryCollection<T>)
Methods
impl<T: CoordinateType> Geometry<T>[src]
impl<T: CoordinateType> Geometry<T>pub fn as_point(self) -> Option<Point<T>>[src]
pub fn as_point(self) -> Option<Point<T>>If this Geometry is a Point, then return that, else None.
use geo_types::*; let g = Geometry::Point(Point::new(0., 0.)); let p2: Point<f32> = g.as_point().unwrap(); assert_eq!(p2, Point::new(0., 0.,));
pub fn as_linestring(self) -> Option<LineString<T>>[src]
pub fn as_linestring(self) -> Option<LineString<T>>If this Geometry is a LineString, then return that LineString, else None.
pub fn as_line(self) -> Option<Line<T>>[src]
pub fn as_line(self) -> Option<Line<T>>If this Geometry is a Line, then return that Line, else None.
pub fn as_polygon(self) -> Option<Polygon<T>>[src]
pub fn as_polygon(self) -> Option<Polygon<T>>If this Geometry is a Polygon, then return that, else None.
pub fn as_multipoint(self) -> Option<MultiPoint<T>>[src]
pub fn as_multipoint(self) -> Option<MultiPoint<T>>If this Geometry is a MultiPoint, then return that, else None.
pub fn as_multilinestring(self) -> Option<MultiLineString<T>>[src]
pub fn as_multilinestring(self) -> Option<MultiLineString<T>>If this Geometry is a MultiLineString, then return that, else None.
pub fn as_multipolygon(self) -> Option<MultiPolygon<T>>[src]
pub fn as_multipolygon(self) -> Option<MultiPolygon<T>>If this Geometry is a MultiPolygon, then return that, else None.
Trait Implementations
impl<T: PartialEq> PartialEq for Geometry<T> where
T: CoordinateType, [src]
impl<T: PartialEq> PartialEq for Geometry<T> where
T: CoordinateType, fn eq(&self, other: &Geometry<T>) -> bool[src]
fn eq(&self, other: &Geometry<T>) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &Geometry<T>) -> bool[src]
fn ne(&self, other: &Geometry<T>) -> boolThis method tests for !=.
impl<T: Clone> Clone for Geometry<T> where
T: CoordinateType, [src]
impl<T: Clone> Clone for Geometry<T> where
T: CoordinateType, fn clone(&self) -> Geometry<T>[src]
fn clone(&self) -> Geometry<T>Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)Performs copy-assignment from source. Read more
impl<T: Debug> Debug for Geometry<T> where
T: CoordinateType, [src]
impl<T: Debug> Debug for Geometry<T> where
T: CoordinateType, fn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl<T: CoordinateType> From<Point<T>> for Geometry<T>[src]
impl<T: CoordinateType> From<Point<T>> for Geometry<T>impl<T: CoordinateType> From<LineString<T>> for Geometry<T>[src]
impl<T: CoordinateType> From<LineString<T>> for Geometry<T>fn from(x: LineString<T>) -> Geometry<T>[src]
fn from(x: LineString<T>) -> Geometry<T>Performs the conversion.
impl<T: CoordinateType> From<Polygon<T>> for Geometry<T>[src]
impl<T: CoordinateType> From<Polygon<T>> for Geometry<T>impl<T: CoordinateType> From<MultiPoint<T>> for Geometry<T>[src]
impl<T: CoordinateType> From<MultiPoint<T>> for Geometry<T>fn from(x: MultiPoint<T>) -> Geometry<T>[src]
fn from(x: MultiPoint<T>) -> Geometry<T>Performs the conversion.
impl<T: CoordinateType> From<MultiLineString<T>> for Geometry<T>[src]
impl<T: CoordinateType> From<MultiLineString<T>> for Geometry<T>fn from(x: MultiLineString<T>) -> Geometry<T>[src]
fn from(x: MultiLineString<T>) -> Geometry<T>Performs the conversion.
impl<T: CoordinateType> From<MultiPolygon<T>> for Geometry<T>[src]
impl<T: CoordinateType> From<MultiPolygon<T>> for Geometry<T>fn from(x: MultiPolygon<T>) -> Geometry<T>[src]
fn from(x: MultiPolygon<T>) -> Geometry<T>Performs the conversion.