Geometry

Enum Geometry 

Source
pub enum Geometry<T = f64>
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>), }
Available on crate feature geo-types only.
Expand description

An enum representing any possible geometry type.

All geometry variants (Point, LineString, etc.) can be converted to a Geometry using Into::into. Conversely, TryFrom::try_from can be used to convert a Geometry back to one of it’s specific 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 = 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§

Source§

impl<T> Geometry<T>
where T: CoordNum,

Source

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

👎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::*;
use std::convert::TryInto;

let g = Geometry::Point(Point::new(0., 0.));
let p2: Point<f32> = g.try_into().unwrap();
assert_eq!(p2, Point::new(0., 0.,));
Source

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

👎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.

Source

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

👎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.

Source

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

👎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.

Source

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

👎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.

Source

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

👎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.

Source

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

👎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§

Source§

impl<T> Clone for Geometry<T>
where T: Clone + CoordNum,

Source§

fn clone(&self) -> Geometry<T>

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl<T> Debug for Geometry<T>
where T: CoordNum,

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
Source§

impl<T> Decode<'_, Exasol> for Geometry<T>
where T: CoordNum + FromStr + Default,

Source§

fn decode( value: ExaValueRef<'_>, ) -> Result<Geometry<T>, Box<dyn Error + Sync + Send>>

Decode a new value of this type using a raw value from the database.
Source§

impl<T> Encode<'_, Exasol> for Geometry<T>
where T: CoordNum + Display,

Source§

fn encode_by_ref( &self, buf: &mut ExaBuffer, ) -> Result<IsNull, Box<dyn Error + Sync + Send>>

Writes the value of self into buf without moving self. Read more
Source§

fn encode( self, buf: &mut <DB as Database>::ArgumentBuffer, ) -> Result<IsNull, Box<dyn Error + Sync + Send>>
where Self: Sized,

Writes the value of self into buf in the expected format for the database.
Source§

fn produces(&self) -> Option<<DB as Database>::TypeInfo>

Source§

fn size_hint(&self) -> usize

Source§

impl<'a, T> From<&'a LineString<T>> for Geometry<T>
where T: CoordNum,

Source§

fn from(line_string: &'a LineString<T>) -> Geometry<T>

Converts to this type from the input type.
Source§

impl<'a, T> From<&'a MultiLineString<T>> for Geometry<T>
where T: CoordNum,

Source§

fn from(multi_line_string: &'a MultiLineString<T>) -> Geometry<T>

Converts to this type from the input type.
Source§

impl<'a, T> From<&'a MultiPolygon<T>> for Geometry<T>
where T: CoordNum,

Source§

fn from(multi_polygon: &'a MultiPolygon<T>) -> Geometry<T>

Converts to this type from the input type.
Source§

impl<'a, T> From<&'a Polygon<T>> for Geometry<T>
where T: CoordNum,

Source§

fn from(polygon: &'a Polygon<T>) -> Geometry<T>

Converts to this type from the input type.
Source§

impl<T> From<Line<T>> for Geometry<T>
where T: CoordNum,

Source§

fn from(x: Line<T>) -> Geometry<T>

Converts to this type from the input type.
Source§

impl<T> From<LineString<T>> for Geometry<T>
where T: CoordNum,

Source§

fn from(x: LineString<T>) -> Geometry<T>

Converts to this type from the input type.
Source§

impl<T> From<MultiLineString<T>> for Geometry<T>
where T: CoordNum,

Source§

fn from(x: MultiLineString<T>) -> Geometry<T>

Converts to this type from the input type.
Source§

impl<T> From<MultiPoint<T>> for Geometry<T>
where T: CoordNum,

Source§

fn from(x: MultiPoint<T>) -> Geometry<T>

Converts to this type from the input type.
Source§

impl<T> From<MultiPolygon<T>> for Geometry<T>
where T: CoordNum,

Source§

fn from(x: MultiPolygon<T>) -> Geometry<T>

Converts to this type from the input type.
Source§

impl<T> From<Point<T>> for Geometry<T>
where T: CoordNum,

Source§

fn from(x: Point<T>) -> Geometry<T>

Converts to this type from the input type.
Source§

impl<T> From<Polygon<T>> for Geometry<T>
where T: CoordNum,

Source§

fn from(x: Polygon<T>) -> Geometry<T>

Converts to this type from the input type.
Source§

impl<T> From<Rect<T>> for Geometry<T>
where T: CoordNum,

Source§

fn from(x: Rect<T>) -> Geometry<T>

Converts to this type from the input type.
Source§

impl<T> From<Triangle<T>> for Geometry<T>
where T: CoordNum,

Source§

fn from(x: Triangle<T>) -> Geometry<T>

Converts to this type from the input type.
Source§

impl<'a, T> GeometryTrait for &'a Geometry<T>
where T: CoordNum + 'a,

Source§

type T = T

The coordinate type of this geometry
Source§

type PointType<'b> = Point<<&'a Geometry<T> as GeometryTrait>::T> where &'a Geometry<T>: 'b

The type of each underlying Point, which implements PointTrait
Source§

type LineStringType<'b> = LineString<<&'a Geometry<T> as GeometryTrait>::T> where &'a Geometry<T>: 'b

The type of each underlying LineString, which implements LineStringTrait
Source§

type PolygonType<'b> = Polygon<<&'a Geometry<T> as GeometryTrait>::T> where &'a Geometry<T>: 'b

The type of each underlying Polygon, which implements PolygonTrait
Source§

type MultiPointType<'b> = MultiPoint<<&'a Geometry<T> as GeometryTrait>::T> where &'a Geometry<T>: 'b

The type of each underlying MultiPoint, which implements MultiPointTrait
Source§

type MultiLineStringType<'b> = MultiLineString<<&'a Geometry<T> as GeometryTrait>::T> where &'a Geometry<T>: 'b

The type of each underlying MultiLineString, which implements MultiLineStringTrait
Source§

type MultiPolygonType<'b> = MultiPolygon<<&'a Geometry<T> as GeometryTrait>::T> where &'a Geometry<T>: 'b

The type of each underlying MultiPolygon, which implements MultiPolygonTrait
Source§

type GeometryCollectionType<'b> = GeometryCollection<<&'a Geometry<T> as GeometryTrait>::T> where &'a Geometry<T>: 'b

The type of each underlying GeometryCollection, which implements GeometryCollectionTrait
Source§

type RectType<'b> = Rect<<&'a Geometry<T> as GeometryTrait>::T> where &'a Geometry<T>: 'b

The type of each underlying Rect, which implements RectTrait
Source§

type TriangleType<'b> = Triangle<<&'a Geometry<T> as GeometryTrait>::T> where &'a Geometry<T>: 'b

The type of each underlying Triangle, which implements TriangleTrait
Source§

type LineType<'b> = Line<<&'a Geometry<T> as GeometryTrait>::T> where &'a Geometry<T>: 'b

The type of each underlying Line, which implements LineTrait
Source§

fn dim(&self) -> Dimensions

The dimension of this geometry
Source§

fn as_type( &self, ) -> GeometryType<'_, Point<T>, LineString<T>, Polygon<T>, MultiPoint<T>, MultiLineString<T>, MultiPolygon<T>, GeometryCollection<T>, Rect<T>, Triangle<T>, Line<T>>

Cast this geometry to a GeometryType enum, which allows for downcasting to a specific type
Source§

impl<T> GeometryTrait for Geometry<T>
where T: CoordNum,

Source§

type T = T

The coordinate type of this geometry
Source§

type PointType<'b> = Point<<Geometry<T> as GeometryTrait>::T> where Geometry<T>: 'b

The type of each underlying Point, which implements PointTrait
Source§

type LineStringType<'b> = LineString<<Geometry<T> as GeometryTrait>::T> where Geometry<T>: 'b

The type of each underlying LineString, which implements LineStringTrait
Source§

type PolygonType<'b> = Polygon<<Geometry<T> as GeometryTrait>::T> where Geometry<T>: 'b

The type of each underlying Polygon, which implements PolygonTrait
Source§

type MultiPointType<'b> = MultiPoint<<Geometry<T> as GeometryTrait>::T> where Geometry<T>: 'b

The type of each underlying MultiPoint, which implements MultiPointTrait
Source§

type MultiLineStringType<'b> = MultiLineString<<Geometry<T> as GeometryTrait>::T> where Geometry<T>: 'b

The type of each underlying MultiLineString, which implements MultiLineStringTrait
Source§

type MultiPolygonType<'b> = MultiPolygon<<Geometry<T> as GeometryTrait>::T> where Geometry<T>: 'b

The type of each underlying MultiPolygon, which implements MultiPolygonTrait
Source§

type GeometryCollectionType<'b> = GeometryCollection<<Geometry<T> as GeometryTrait>::T> where Geometry<T>: 'b

The type of each underlying GeometryCollection, which implements GeometryCollectionTrait
Source§

type RectType<'b> = Rect<<Geometry<T> as GeometryTrait>::T> where Geometry<T>: 'b

The type of each underlying Rect, which implements RectTrait
Source§

type TriangleType<'b> = Triangle<<Geometry<T> as GeometryTrait>::T> where Geometry<T>: 'b

The type of each underlying Triangle, which implements TriangleTrait
Source§

type LineType<'b> = Line<<Geometry<T> as GeometryTrait>::T> where Geometry<T>: 'b

The type of each underlying Line, which implements LineTrait
Source§

fn dim(&self) -> Dimensions

The dimension of this geometry
Source§

fn as_type( &self, ) -> GeometryType<'_, Point<T>, LineString<T>, Polygon<T>, MultiPoint<T>, MultiLineString<T>, MultiPolygon<T>, GeometryCollection<T>, Rect<T>, Triangle<T>, Line<T>>

Cast this geometry to a GeometryType enum, which allows for downcasting to a specific type
Source§

impl<T> Hash for Geometry<T>
where T: Hash + CoordNum,

Source§

fn hash<__H>(&self, state: &mut __H)
where __H: Hasher,

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
Source§

impl<T> PartialEq for Geometry<T>
where T: PartialEq + CoordNum,

Source§

fn eq(&self, other: &Geometry<T>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl<T> ToWkt<T> for Geometry<T>
where T: CoordNum + Display,

§Examples

use geo_types::{point, Geometry};
use wkt::ToWkt;

let geometry: Geometry<f64> = Geometry::Point(point!(x: 1., y: 2.));

assert_eq!(geometry.wkt_string(), "POINT(1 2)");
Source§

fn to_wkt(&self) -> Wkt<T>

Converts the value of self to an Wkt struct. Read more
Source§

fn write_wkt(&self, writer: impl Write) -> Result<(), Error>

Write a WKT string to a File, or anything else that implements Write. Read more
Source§

fn wkt_string(&self) -> String

Serialize as a WKT string Read more
Source§

impl<'a, T> TryFrom<&'a MultiPoint<T>> for Geometry<T>
where T: CoordNum,

Source§

type Error = Error

The type returned in the event of a conversion error.
Source§

fn try_from( multi_point: &'a MultiPoint<T>, ) -> Result<Geometry<T>, <Geometry<T> as TryFrom<&'a MultiPoint<T>>>::Error>

Performs the conversion.
Source§

impl<T> TryFrom<Geometry<T>> for Line<T>
where T: CoordNum,

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.

Source§

type Error = Error

The type returned in the event of a conversion error.
Source§

fn try_from( geom: Geometry<T>, ) -> Result<Line<T>, <Line<T> as TryFrom<Geometry<T>>>::Error>

Performs the conversion.
Source§

impl<T> TryFrom<Geometry<T>> for LineString<T>
where T: CoordNum,

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.

Source§

type Error = Error

The type returned in the event of a conversion error.
Source§

fn try_from( geom: Geometry<T>, ) -> Result<LineString<T>, <LineString<T> as TryFrom<Geometry<T>>>::Error>

Performs the conversion.
Source§

impl<T> TryFrom<Geometry<T>> for MultiLineString<T>
where T: CoordNum,

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.

Source§

type Error = Error

The type returned in the event of a conversion error.
Source§

fn try_from( geom: Geometry<T>, ) -> Result<MultiLineString<T>, <MultiLineString<T> as TryFrom<Geometry<T>>>::Error>

Performs the conversion.
Source§

impl<T> TryFrom<Geometry<T>> for MultiPoint<T>
where T: CoordNum,

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.

Source§

type Error = Error

The type returned in the event of a conversion error.
Source§

fn try_from( geom: Geometry<T>, ) -> Result<MultiPoint<T>, <MultiPoint<T> as TryFrom<Geometry<T>>>::Error>

Performs the conversion.
Source§

impl<T> TryFrom<Geometry<T>> for MultiPolygon<T>
where T: CoordNum,

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.

Source§

type Error = Error

The type returned in the event of a conversion error.
Source§

fn try_from( geom: Geometry<T>, ) -> Result<MultiPolygon<T>, <MultiPolygon<T> as TryFrom<Geometry<T>>>::Error>

Performs the conversion.
Source§

impl<T> TryFrom<Geometry<T>> for Point<T>
where T: CoordNum,

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.

Source§

type Error = Error

The type returned in the event of a conversion error.
Source§

fn try_from( geom: Geometry<T>, ) -> Result<Point<T>, <Point<T> as TryFrom<Geometry<T>>>::Error>

Performs the conversion.
Source§

impl<T> TryFrom<Geometry<T>> for Polygon<T>
where T: CoordNum,

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.

Source§

type Error = Error

The type returned in the event of a conversion error.
Source§

fn try_from( geom: Geometry<T>, ) -> Result<Polygon<T>, <Polygon<T> as TryFrom<Geometry<T>>>::Error>

Performs the conversion.
Source§

impl<T> TryFrom<Geometry<T>> for Rect<T>
where T: CoordNum,

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.

Source§

type Error = Error

The type returned in the event of a conversion error.
Source§

fn try_from( geom: Geometry<T>, ) -> Result<Rect<T>, <Rect<T> as TryFrom<Geometry<T>>>::Error>

Performs the conversion.
Source§

impl<T> TryFrom<Geometry<T>> for Triangle<T>
where T: CoordNum,

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.

Source§

type Error = Error

The type returned in the event of a conversion error.
Source§

fn try_from( geom: Geometry<T>, ) -> Result<Triangle<T>, <Triangle<T> as TryFrom<Geometry<T>>>::Error>

Performs the conversion.
Source§

impl<T> TryFrom<Wkt<T>> for Geometry<T>
where T: CoordNum,

Source§

type Error = Error

The type returned in the event of a conversion error.
Source§

fn try_from( geometry: Wkt<T>, ) -> Result<Geometry<T>, <Geometry<T> as TryFrom<Wkt<T>>>::Error>

Performs the conversion.
Source§

impl<T> TryFromWkt<T> for Geometry<T>
where T: CoordNum + FromStr + Default,

Source§

type Error = Error

Source§

fn try_from_wkt_str( wkt_str: &str, ) -> Result<Geometry<T>, <Geometry<T> as TryFromWkt<T>>::Error>

Examples Read more
Source§

fn try_from_wkt_reader( wkt_reader: impl Read, ) -> Result<Geometry<T>, <Geometry<T> as TryFromWkt<T>>::Error>

Examples Read more
Source§

impl<T> Type<Exasol> for Geometry<T>
where T: CoordNum,

Source§

fn type_info() -> ExaTypeInfo

Returns the canonical SQL type for this Rust type. Read more
Source§

fn compatible(ty: &<DB as Database>::TypeInfo) -> bool

Determines if this Rust type is compatible with the given SQL type. Read more
Source§

impl<T> Eq for Geometry<T>
where T: Eq + CoordNum,

Source§

impl<T> ExaHasArrayType for Geometry<T>
where T: CoordNum,

Source§

impl<T> StructuralPartialEq for Geometry<T>
where T: CoordNum,

Auto Trait Implementations§

§

impl<T> Freeze for Geometry<T>
where T: Freeze,

§

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§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
Source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T, G> ToGeoGeometry<T> for G
where T: CoordNum, G: GeometryTrait<T = T>,

Source§

fn try_to_geometry(&self) -> Option<Geometry<T>>

Convert to a geo_types Geometry. Read more
Source§

fn to_geometry(&self) -> Geometry<T>

Convert to a geo_types Geometry. Read more
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V

Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more