Enum geo::Geometry[][src]

pub enum Geometry<T> where
    T: CoordNum
{ Point(Point<T>), Line(Line<T>), LineString(LineString<T>), Polygon(Polygon<T>), MultiPoint(MultiPoint<T>), MultiLineString(MultiLineString<T>), MultiPolygon(MultiPolygon<T>), GeometryCollection(GeometryCollection<T>), Rect(Rect<T>), Triangle(Triangle<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), and Geo types implement the TryFrom trait in order to convert back from enum members.

Example

use std::convert::TryFrom;
use geo_types::{Point, point, Geometry, GeometryCollection};
let p = point!(x: 1.0, y: 1.0);
let pe: Geometry<f64> = p.into();
let pn = Point::try_from(pe).unwrap();

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>)
Rect(Rect<T>)
Triangle(Triangle<T>)

Implementations

impl<T> Geometry<T> where
    T: CoordNum
[src]

pub fn into_point(self) -> Option<Point<T>>[src]

👎 Deprecated:

Will be removed in an upcoming version. Switch to std::convert::TryInto<Point>

If this Geometry is a Point, then return that, else None.

Examples

use geo_types::*;
let g = Geometry::Point(Point::new(0., 0.));
let p2: Point<f32> = g.into_point().unwrap();
assert_eq!(p2, Point::new(0., 0.,));

pub fn into_line_string(self) -> Option<LineString<T>>[src]

👎 Deprecated:

Will be removed in an upcoming version. Switch to std::convert::TryInto<LineString>

If this Geometry is a LineString, then return that LineString, else None.

pub fn into_line(self) -> Option<Line<T>>[src]

👎 Deprecated:

Will be removed in an upcoming version. Switch to std::convert::TryInto<Line>

If this Geometry is a Line, then return that Line, else None.

pub fn into_polygon(self) -> Option<Polygon<T>>[src]

👎 Deprecated:

Will be removed in an upcoming version. Switch to std::convert::TryInto<Polygon>

If this Geometry is a Polygon, then return that, else None.

pub fn into_multi_point(self) -> Option<MultiPoint<T>>[src]

👎 Deprecated:

Will be removed in an upcoming version. Switch to std::convert::TryInto<MultiPoint>

If this Geometry is a MultiPoint, then return that, else None.

pub fn into_multi_line_string(self) -> Option<MultiLineString<T>>[src]

👎 Deprecated:

Will be removed in an upcoming version. Switch to std::convert::TryInto<MultiLineString>

If this Geometry is a MultiLineString, then return that, else None.

pub fn into_multi_polygon(self) -> Option<MultiPolygon<T>>[src]

👎 Deprecated:

Will be removed in an upcoming version. Switch to std::convert::TryInto<MultiPolygon>

If this Geometry is a MultiPolygon, then return that, else None.

Trait Implementations

impl<T> AbsDiffEq<Geometry<T>> for Geometry<T> where
    T: AbsDiffEq<T, Epsilon = T> + CoordNum
[src]

type Epsilon = T

Used for specifying relative comparisons.

pub fn abs_diff_eq(
    &self,
    other: &Geometry<T>,
    epsilon: <Geometry<T> as AbsDiffEq<Geometry<T>>>::Epsilon
) -> bool
[src]

Equality assertion with an absolute limit.

Examples

use geo_types::{Geometry, polygon};

let a: Geometry<f32> = polygon![(x: 0., y: 0.), (x: 5., y: 0.), (x: 7., y: 9.), (x: 0., y: 0.)].into();
let b: Geometry<f32> = polygon![(x: 0., y: 0.), (x: 5., y: 0.), (x: 7.01, y: 9.), (x: 0., y: 0.)].into();

approx::assert_abs_diff_eq!(a, b, epsilon=0.1);
approx::assert_abs_diff_ne!(a, b, epsilon=0.001);

impl<T> Area<T> for Geometry<T> where
    T: CoordFloat
[src]

impl<T> BoundingRect<T> for Geometry<T> where
    T: CoordNum
[src]

type Output = Option<Rect<T>>

impl<T> Centroid for Geometry<T> where
    T: GeoFloat
[src]

type Output = Option<Point<T>>

impl<T> Clone for Geometry<T> where
    T: Clone + CoordNum
[src]

impl<T> Contains<Coordinate<T>> for Geometry<T> where
    T: GeoNum
[src]

impl<T> Contains<Point<T>> for Geometry<T> where
    T: GeoNum
[src]

impl<T> CoordinatePosition for Geometry<T> where
    T: GeoNum
[src]

type Scalar = T

impl<'a, T: CoordNum + 'a> CoordsIter<'a> for Geometry<T>[src]

type Iter = GeometryCoordsIter<'a, T>

type ExteriorIter = GeometryExteriorCoordsIter<'a, T>

type Scalar = T

fn coords_count(&'a self) -> usize[src]

Return the number of coordinates in the Geometry.

impl<T> Debug for Geometry<T> where
    T: Debug + CoordNum
[src]

impl<T> Eq for Geometry<T> where
    T: Eq + CoordNum
[src]

impl<T> From<Line<T>> for Geometry<T> where
    T: CoordNum
[src]

impl<T> From<LineString<T>> for Geometry<T> where
    T: CoordNum
[src]

impl<T> From<MultiLineString<T>> for Geometry<T> where
    T: CoordNum
[src]

impl<T> From<MultiPoint<T>> for Geometry<T> where
    T: CoordNum
[src]

impl<T> From<MultiPolygon<T>> for Geometry<T> where
    T: CoordNum
[src]

impl<T> From<Point<T>> for Geometry<T> where
    T: CoordNum
[src]

impl<T> From<Polygon<T>> for Geometry<T> where
    T: CoordNum
[src]

impl<T> From<Rect<T>> for Geometry<T> where
    T: CoordNum
[src]

impl<T> From<Triangle<T>> for Geometry<T> where
    T: CoordNum
[src]

impl<C: GeoNum> HasDimensions for Geometry<C>[src]

impl<T> Hash for Geometry<T> where
    T: Hash + CoordNum
[src]

impl<T, G> Intersects<G> for Geometry<T> where
    T: CoordNum,
    Point<T>: Intersects<G>,
    MultiPoint<T>: Intersects<G>,
    Line<T>: Intersects<G>,
    LineString<T>: Intersects<G>,
    MultiLineString<T>: Intersects<G>,
    Triangle<T>: Intersects<G>,
    Rect<T>: Intersects<G>,
    Polygon<T>: Intersects<G>,
    MultiPolygon<T>: Intersects<G>, 
[src]

impl<T> Intersects<Geometry<T>> for Coordinate<T> where
    Geometry<T>: Intersects<Coordinate<T>>,
    T: CoordNum
[src]

impl<T> Intersects<Geometry<T>> for Line<T> where
    Geometry<T>: Intersects<Line<T>>,
    T: CoordNum
[src]

impl<T> Intersects<Geometry<T>> for Rect<T> where
    Geometry<T>: Intersects<Rect<T>>,
    T: CoordNum
[src]

impl<T> Intersects<Geometry<T>> for Polygon<T> where
    Geometry<T>: Intersects<Polygon<T>>,
    T: CoordNum
[src]

impl<T: CoordNum, NT: CoordNum> MapCoords<T, NT> for Geometry<T>[src]

type Output = Geometry<NT>

impl<T: CoordNum> MapCoordsInplace<T> for Geometry<T>[src]

impl<T> PartialEq<Geometry<T>> for Geometry<T> where
    T: PartialEq<T> + CoordNum
[src]

impl<F: GeoFloat> Relate<F, Geometry<F>> for Geometry<F>[src]

impl<T> RelativeEq<Geometry<T>> for Geometry<T> where
    T: AbsDiffEq<T, Epsilon = T> + CoordNum + RelativeEq<T>, 
[src]

pub fn relative_eq(
    &self,
    other: &Geometry<T>,
    epsilon: <Geometry<T> as AbsDiffEq<Geometry<T>>>::Epsilon,
    max_relative: <Geometry<T> as AbsDiffEq<Geometry<T>>>::Epsilon
) -> bool
[src]

Equality assertion within a relative limit.

Examples

use geo_types::{Geometry, polygon};

let a: Geometry<f32> = polygon![(x: 0., y: 0.), (x: 5., y: 0.), (x: 7., y: 9.), (x: 0., y: 0.)].into();
let b: Geometry<f32> = polygon![(x: 0., y: 0.), (x: 5., y: 0.), (x: 7.01, y: 9.), (x: 0., y: 0.)].into();

approx::assert_relative_eq!(a, b, max_relative=0.1);
approx::assert_relative_ne!(a, b, max_relative=0.001);

impl<T> StructuralEq for Geometry<T> where
    T: CoordNum
[src]

impl<T> StructuralPartialEq for Geometry<T> where
    T: CoordNum
[src]

impl<T> TryFrom<Geometry<T>> for MultiPolygon<T> where
    T: CoordNum
[src]

Convert a Geometry enum into its inner type.

Fails if the enum case does not match the type you are trying to convert it to.

type Error = Error

The type returned in the event of a conversion error.

impl<T> TryFrom<Geometry<T>> for LineString<T> where
    T: CoordNum
[src]

Convert a Geometry enum into its inner type.

Fails if the enum case does not match the type you are trying to convert it to.

type Error = Error

The type returned in the event of a conversion error.

impl<T> TryFrom<Geometry<T>> for Polygon<T> where
    T: CoordNum
[src]

Convert a Geometry enum into its inner type.

Fails if the enum case does not match the type you are trying to convert it to.

type Error = Error

The type returned in the event of a conversion error.

impl<T> TryFrom<Geometry<T>> for Line<T> where
    T: CoordNum
[src]

Convert a Geometry enum into its inner type.

Fails if the enum case does not match the type you are trying to convert it to.

type Error = Error

The type returned in the event of a conversion error.

impl<T> TryFrom<Geometry<T>> for MultiLineString<T> where
    T: CoordNum
[src]

Convert a Geometry enum into its inner type.

Fails if the enum case does not match the type you are trying to convert it to.

type Error = Error

The type returned in the event of a conversion error.

impl<T> TryFrom<Geometry<T>> for MultiPoint<T> where
    T: CoordNum
[src]

Convert a Geometry enum into its inner type.

Fails if the enum case does not match the type you are trying to convert it to.

type Error = Error

The type returned in the event of a conversion error.

impl<T> TryFrom<Geometry<T>> for Triangle<T> where
    T: CoordNum
[src]

Convert a Geometry enum into its inner type.

Fails if the enum case does not match the type you are trying to convert it to.

type Error = Error

The type returned in the event of a conversion error.

impl<T> TryFrom<Geometry<T>> for Rect<T> where
    T: CoordNum
[src]

Convert a Geometry enum into its inner type.

Fails if the enum case does not match the type you are trying to convert it to.

type Error = Error

The type returned in the event of a conversion error.

impl<T> TryFrom<Geometry<T>> for Point<T> where
    T: CoordNum
[src]

Convert a Geometry enum into its inner type.

Fails if the enum case does not match the type you are trying to convert it to.

type Error = Error

The type returned in the event of a conversion error.

impl<T: CoordNum, NT: CoordNum> TryMapCoords<T, NT> for Geometry<T>[src]

type Output = Geometry<NT>

Auto Trait Implementations

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

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

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

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

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

Blanket Implementations

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

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

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

impl<'a, T, G> Extremes<'a, T> for G where
    T: CoordNum,
    G: CoordsIter<'a, Scalar = T>, 
[src]

impl<T> From<T> for T[src]

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

impl<T, G> RotatePoint<T> for G where
    T: CoordFloat,
    G: MapCoords<T, T, Output = G>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, G> Translate<T> for G where
    T: CoordNum,
    G: MapCoords<T, T, Output = G> + MapCoordsInplace<T>, 
[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.