Struct geo::GeometryCollection[][src]

pub struct GeometryCollection<T>(pub Vec<Geometry<T>>)
where
    T: CoordinateType
;

A collection of Geometry types

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

Iterating over this objects, yields the component Geometries.

Trait Implementations

impl<T, IG> FromIterator<IG> for GeometryCollection<T> where
    IG: Into<Geometry<T>>,
    T: CoordinateType
[src]

Creates a value from an iterator. Read more

impl<T> Clone for GeometryCollection<T> where
    T: Clone + CoordinateType
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<T> Debug for GeometryCollection<T> where
    T: Debug + CoordinateType
[src]

Formats the value using the given formatter. Read more

impl<T> IntoIterator for GeometryCollection<T> where
    T: CoordinateType
[src]

The type of the elements being iterated over.

Which kind of iterator are we turning this into?

Creates an iterator from a value. Read more

impl<T> PartialEq<GeometryCollection<T>> for GeometryCollection<T> where
    T: PartialEq<T> + CoordinateType
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl<T, IG> From<IG> for GeometryCollection<T> where
    IG: Into<Geometry<T>>,
    T: CoordinateType
[src]

Performs the conversion.

impl<T: CoordinateType, NT: CoordinateType> MapCoords<T, NT> for GeometryCollection<T>
[src]

Apply a function to all the coordinates in a geometric object, returning a new object. Read more

impl<T: CoordinateType, NT: CoordinateType> TryMapCoords<T, NT> for GeometryCollection<T>
[src]

Map a fallible function over all the coordinates in a geometry, returning a Result Read more

impl<T: CoordinateType> MapCoordsInplace<T> for GeometryCollection<T>
[src]

Apply a function to all the coordinates in a geometric object, in place Read more

Auto Trait Implementations

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

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