Struct geo_types::MultiPoint[][src]

pub struct MultiPoint<T>(pub Vec<Point<T>>)
where
    T: CoordinateType
;

A collection of Points

Examples

Iterating over a MultiPoint yields the Points inside.

use geo_types::{MultiPoint, Point};
let points: MultiPoint<_> = vec![(0., 0.), (1., 2.)].into();
for point in points {
    println!("Point x = {}, y = {}", point.x(), point.y());
}

Trait Implementations

impl<T: PartialEq> PartialEq for MultiPoint<T> where
    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: Clone> Clone for MultiPoint<T> where
    T: CoordinateType
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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

Formats the value using the given formatter. Read more

impl<T: CoordinateType, IP: Into<Point<T>>> From<IP> for MultiPoint<T>
[src]

Convert a single Point (or something which can be converted to a Point) into a one-member MultiPoint

impl<T: CoordinateType, IP: Into<Point<T>>> From<Vec<IP>> for MultiPoint<T>
[src]

Convert a Vec of Points (or Vec of things which can be converted to a Point) into a MultiPoint.

impl<T: CoordinateType, IP: Into<Point<T>>> FromIterator<IP> for MultiPoint<T>
[src]

Collect the results of a Point iterator into a MultiPoint

impl<T: CoordinateType> IntoIterator for MultiPoint<T>
[src]

Iterate over the Points in this MultiPoint.

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: CoordinateType> From<MultiPoint<T>> for Geometry<T>
[src]

Performs the conversion.

Auto Trait Implementations

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

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