GeometryCollection

Struct GeometryCollection 

Source
pub struct GeometryCollection<T = f64>(pub Vec<Geometry<T>>)
where
    T: CoordNum;
Available on crate feature geo-types only.
Expand description

A collection of Geometry types.

It can be created from a Vec of Geometries, or from an Iterator which yields Geometries.

Looping over this object yields its component Geometry enum members (not the underlying geometry primitives), and it supports iteration and indexing as well as the various MapCoords functions, which are directly applied to the underlying geometry primitives.

§Examples

§Looping

use std::convert::TryFrom;
use geo_types::{Point, point, Geometry, GeometryCollection};
let p = point!(x: 1.0, y: 1.0);
let pe = Geometry::Point(p);
let gc = GeometryCollection::new_from(vec![pe]);
for geom in gc {
    println!("{:?}", Point::try_from(geom).unwrap().x());
}

§Implements iter()

use std::convert::TryFrom;
use geo_types::{Point, point, Geometry, GeometryCollection};
let p = point!(x: 1.0, y: 1.0);
let pe = Geometry::Point(p);
let gc = GeometryCollection::new_from(vec![pe]);
gc.iter().for_each(|geom| println!("{:?}", geom));

§Mutable Iteration

use std::convert::TryFrom;
use geo_types::{Point, point, Geometry, GeometryCollection};
let p = point!(x: 1.0, y: 1.0);
let pe = Geometry::Point(p);
let mut gc = GeometryCollection::new_from(vec![pe]);
gc.iter_mut().for_each(|geom| {
   if let Geometry::Point(p) = geom {
       p.set_x(0.2);
   }
});
let updated = gc[0].clone();
assert_eq!(Point::try_from(updated).unwrap().x(), 0.2);

§Indexing

use std::convert::TryFrom;
use geo_types::{Point, point, Geometry, GeometryCollection};
let p = point!(x: 1.0, y: 1.0);
let pe = Geometry::Point(p);
let gc = GeometryCollection::new_from(vec![pe]);
println!("{:?}", gc[0]);

Tuple Fields§

§0: Vec<Geometry<T>>

Implementations§

Source§

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

Source

pub fn new() -> GeometryCollection<T>

👎Deprecated: Will be replaced with a parametrized version in upcoming version. Use GeometryCollection::empty() instead

Return an empty GeometryCollection

Source

pub fn new_from(value: Vec<Geometry<T>>) -> GeometryCollection<T>

DO NOT USE! This fn will be renamed to new in the upcoming version. This fn is not marked as deprecated because it would require extensive refactoring of the geo code.

Source

pub fn empty() -> GeometryCollection<T>

Returns an empty GeometryCollection

Source

pub fn len(&self) -> usize

Number of geometries in this GeometryCollection

Source

pub fn is_empty(&self) -> bool

Is this GeometryCollection empty

Source§

impl<'a, T> GeometryCollection<T>
where T: CoordNum,

Source

pub fn iter(&'a self) -> IterHelper<'a, T>

Source

pub fn iter_mut(&'a mut self) -> IterMutHelper<'a, T>

Trait Implementations§

Source§

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

Source§

fn clone(&self) -> GeometryCollection<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 GeometryCollection<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> Default for GeometryCollection<T>
where T: CoordNum,

Source§

fn default() -> GeometryCollection<T>

Returns the “default value” for a type. Read more
Source§

impl<T, IG> From<IG> for GeometryCollection<T>
where T: CoordNum, IG: Into<Geometry<T>>,

DO NOT USE! Deprecated since 0.7.5.

Use GeometryCollection::from(vec![geom]) instead.

Source§

fn from(x: IG) -> GeometryCollection<T>

Converts to this type from the input type.
Source§

impl<T, IG> From<Vec<IG>> for GeometryCollection<T>
where T: CoordNum, IG: Into<Geometry<T>>,

Source§

fn from(geoms: Vec<IG>) -> GeometryCollection<T>

Converts to this type from the input type.
Source§

impl<T, IG> FromIterator<IG> for GeometryCollection<T>
where T: CoordNum, IG: Into<Geometry<T>>,

Collect Geometries (or what can be converted to a Geometry) into a GeometryCollection

Source§

fn from_iter<I>(iter: I) -> GeometryCollection<T>
where I: IntoIterator<Item = IG>,

Creates a value from an iterator. Read more
Source§

impl<'a, T> GeometryCollectionTrait for &'a GeometryCollection<T>
where T: CoordNum,

Source§

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

The type of each underlying geometry, which implements GeometryTrait
Source§

fn num_geometries(&self) -> usize

The number of geometries in this GeometryCollection
Source§

unsafe fn geometry_unchecked( &self, i: usize, ) -> <&'a GeometryCollection<T> as GeometryCollectionTrait>::GeometryType<'_>

Access to a specified geometry in this GeometryCollection Read more
Source§

fn geometries(&self) -> impl DoubleEndedIterator + ExactSizeIterator

An iterator over the geometries in this GeometryCollection
Source§

fn geometry(&self, i: usize) -> Option<Self::GeometryType<'_>>

Access to a specified geometry in this GeometryCollection Will return None if the provided index is out of bounds
Source§

impl<T> GeometryCollectionTrait for GeometryCollection<T>
where T: CoordNum,

Source§

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

The type of each underlying geometry, which implements GeometryTrait
Source§

fn num_geometries(&self) -> usize

The number of geometries in this GeometryCollection
Source§

unsafe fn geometry_unchecked( &self, i: usize, ) -> <GeometryCollection<T> as GeometryCollectionTrait>::GeometryType<'_>

Access to a specified geometry in this GeometryCollection Read more
Source§

fn geometries(&self) -> impl DoubleEndedIterator + ExactSizeIterator

An iterator over the geometries in this GeometryCollection
Source§

fn geometry(&self, i: usize) -> Option<Self::GeometryType<'_>>

Access to a specified geometry in this GeometryCollection Will return None if the provided index is out of bounds
Source§

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

Source§

type T = T

The coordinate type of this geometry
Source§

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

type LineType<'b> = Line<<&'a GeometryCollection<T> as GeometryTrait>::T> where &'a GeometryCollection<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 GeometryCollection<T>
where T: CoordNum,

Source§

type T = T

The coordinate type of this geometry
Source§

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

type LineType<'b> = Line<<GeometryCollection<T> as GeometryTrait>::T> where GeometryCollection<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 GeometryCollection<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> Index<usize> for GeometryCollection<T>
where T: CoordNum,

Source§

type Output = Geometry<T>

The returned type after indexing.
Source§

fn index(&self, index: usize) -> &Geometry<T>

Performs the indexing (container[index]) operation. Read more
Source§

impl<T> IndexMut<usize> for GeometryCollection<T>
where T: CoordNum,

Source§

fn index_mut(&mut self, index: usize) -> &mut Geometry<T>

Performs the mutable indexing (container[index]) operation. Read more
Source§

impl<'a, T> IntoIterator for &'a GeometryCollection<T>
where T: CoordNum,

Source§

type Item = &'a Geometry<T>

The type of the elements being iterated over.
Source§

type IntoIter = IterHelper<'a, T>

Which kind of iterator are we turning this into?
Source§

fn into_iter(self) -> <&'a GeometryCollection<T> as IntoIterator>::IntoIter

Creates an iterator from a value. Read more
Source§

impl<'a, T> IntoIterator for &'a mut GeometryCollection<T>
where T: CoordNum,

Source§

type Item = &'a mut Geometry<T>

The type of the elements being iterated over.
Source§

type IntoIter = IterMutHelper<'a, T>

Which kind of iterator are we turning this into?
Source§

fn into_iter(self) -> <&'a mut GeometryCollection<T> as IntoIterator>::IntoIter

Creates an iterator from a value. Read more
Source§

impl<T> IntoIterator for GeometryCollection<T>
where T: CoordNum,

Source§

type Item = Geometry<T>

The type of the elements being iterated over.
Source§

type IntoIter = IntoIteratorHelper<T>

Which kind of iterator are we turning this into?
Source§

fn into_iter(self) -> <GeometryCollection<T> as IntoIterator>::IntoIter

Creates an iterator from a value. Read more
Source§

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

Source§

fn eq(&self, other: &GeometryCollection<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 GeometryCollection<T>
where T: CoordNum + Display,

§Examples

use geo_types::{line_string, LineString, polygon, Polygon, GeometryCollection};
use wkt::ToWkt;

let polygon: Polygon<f64> = polygon![(x: 0., y: 0.), (x: 4., y: 0.), (x: 2., y: 4.), (x: 0., y: 0.)];
let line_string: LineString<f64> = line_string![(x: 1., y: 2.), (x: 3., y: 4.), (x: 5., y: 6.)];
let geometry_collection: GeometryCollection<f64> = GeometryCollection::new_from(vec![polygon.into(), line_string.into()]);

assert_eq!(geometry_collection.wkt_string(), "GEOMETRYCOLLECTION(POLYGON((0 0,4 0,2 4,0 0)),LINESTRING(1 2,3 4,5 6))");
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<T> TryFrom<GeometryCollection<T>> for GeometryCollection<T>
where T: CoordNum,

Source§

type Error = Error

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

fn try_from( geometry_collection: GeometryCollection<T>, ) -> Result<GeometryCollection<T>, <GeometryCollection<T> as TryFrom<GeometryCollection<T>>>::Error>

Performs the conversion.
Source§

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

Fallibly convert this WKT primitive into this geo_types primitive

Source§

type Error = Error

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

fn try_from( wkt: Wkt<T>, ) -> Result<GeometryCollection<T>, <GeometryCollection<T> as TryFrom<Wkt<T>>>::Error>

Performs the conversion.
Source§

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

Source§

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

Source§

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

Auto Trait Implementations§

§

impl<T> Freeze for GeometryCollection<T>

§

impl<T> RefUnwindSafe for GeometryCollection<T>
where T: RefUnwindSafe,

§

impl<T> Send for GeometryCollection<T>
where T: Send,

§

impl<T> Sync for GeometryCollection<T>
where T: Sync,

§

impl<T> Unpin for GeometryCollection<T>
where T: Unpin,

§

impl<T> UnwindSafe for GeometryCollection<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, G> ToGeoGeometryCollection<T> for G
where T: CoordNum, G: GeometryCollectionTrait<T = T>,

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