Struct geo::MultiPolygon [] [src]

pub struct MultiPolygon<T>(pub Vec<Polygon<T>>)
where
    T: Float
;

A collection of Polygons

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

Iterating over this object yields the component Polygons.

Trait Implementations

impl<T: PartialEq> PartialEq for MultiPolygon<T> where
    T: Float
[src]

[src]

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

[src]

This method tests for !=.

impl<T: Clone> Clone for MultiPolygon<T> where
    T: Float
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl<T: Debug> Debug for MultiPolygon<T> where
    T: Float
[src]

[src]

Formats the value using the given formatter.

impl<T: Float, IP: Into<Polygon<T>>> From<IP> for MultiPolygon<T>
[src]

[src]

Performs the conversion.

impl<T: Float, IP: Into<Polygon<T>>> FromIterator<IP> for MultiPolygon<T>
[src]

[src]

Creates a value from an iterator. Read more

impl<T: Float> IntoIterator for MultiPolygon<T>
[src]

The type of the elements being iterated over.

Which kind of iterator are we turning this into?

[src]

Creates an iterator from a value. Read more

impl<T> Centroid<T> for MultiPolygon<T> where
    T: Float + FromPrimitive
[src]

impl<T> Contains<Point<T>> for MultiPolygon<T> where
    T: Float
[src]

[src]

Checks if the geometry A is completely inside the B geometry. Read more

impl<T> Area<T> for MultiPolygon<T> where
    T: Float
[src]

[src]

impl<T> Distance<T, Point<T>> for MultiPolygon<T> where
    T: Float
[src]

[src]

Minimum distance from a MultiPolygon to a Point

impl<T> BoundingBox<T> for MultiPolygon<T> where
    T: Float
[src]

[src]

Return the BoundingBox for a MultiPolygon

impl<T> Simplify<T> for MultiPolygon<T> where
    T: Float
[src]

[src]

Returns the simplified representation of a geometry, using the Ramer–Douglas–Peucker algorithm Read more

impl<T> SimplifyVWPreserve<T> for MultiPolygon<T> where
    T: Float + SpadeFloat
[src]

[src]

Returns the simplified representation of a geometry, using a topology-preserving variant of the Visvalingam-Whyatt algorithm. Read more

impl<T> SimplifyVW<T> for MultiPolygon<T> where
    T: Float
[src]

[src]

Returns the simplified representation of a geometry, using the Visvalingam-Whyatt algorithm Read more

impl<T> ConvexHull<T> for MultiPolygon<T> where
    T: Float
[src]

[src]

Returns the convex hull of a Polygon. The hull is always oriented counter-clockwise. Read more

impl<T> Orient<T> for MultiPolygon<T> where
    T: Float
[src]

[src]

Orients a Polygon's exterior and interior rings according to convention Read more

impl<T> ExtremeIndices<T> for MultiPolygon<T> where
    T: Float + Signed
[src]

[src]

Find the extreme x and y indices of a convex Polygon Read more

impl<T> Rotate<T> for MultiPolygon<T> where
    T: Float + FromPrimitive
[src]

[src]

Rotate the contained Polygons about their centroids by the given number of degrees

impl<T: Float, NT: Float> MapCoords<T, NT> for MultiPolygon<T>
[src]

[src]

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

impl<F: Float> ClosestPoint<F> for MultiPolygon<F>
[src]

[src]

Find the closest point between self and p.

impl<'a, T> FromPostgis<&'a T> for MultiPolygon<f64> where
    T: MultiPolygon<'a>, 
[src]

[src]

This implementation discards PostGIS polygons that don't convert (return None when from_postgis() is called on them).

impl ToPostgis<MultiPolygon> for MultiPolygon<f64>
[src]

[src]

Converts this geometry to a PostGIS type, using the supplied SRID.

[src]

Converts this WGS84 geometry to a PostGIS type.