Struct geo::MultiPoint [−][src]
pub struct MultiPoint<T>(pub Vec<Point<T>>)
where
T: CoordinateType;
A collection of Points
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, IP> FromIterator<IP> for MultiPoint<T> where
IP: Into<Point<T>>,
T: CoordinateType, [src]
impl<T, IP> FromIterator<IP> for MultiPoint<T> where
IP: Into<Point<T>>,
T: CoordinateType, fn from_iter<I>(iter: I) -> MultiPoint<T> where
I: IntoIterator<Item = IP>, [src]
fn from_iter<I>(iter: I) -> MultiPoint<T> where
I: IntoIterator<Item = IP>, Collect the results of a Point iterator into a MultiPoint
impl<T> Clone for MultiPoint<T> where
T: Clone + CoordinateType, [src]
impl<T> Clone for MultiPoint<T> where
T: Clone + CoordinateType, fn clone(&self) -> MultiPoint<T>[src]
fn clone(&self) -> MultiPoint<T>Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)Performs copy-assignment from source. Read more
impl<T> Debug for MultiPoint<T> where
T: Debug + CoordinateType, [src]
impl<T> Debug for MultiPoint<T> where
T: Debug + CoordinateType, fn fmt(&self, f: &mut Formatter) -> Result<(), Error>[src]
fn fmt(&self, f: &mut Formatter) -> Result<(), Error>Formats the value using the given formatter. Read more
impl<T> IntoIterator for MultiPoint<T> where
T: CoordinateType, [src]
impl<T> IntoIterator for MultiPoint<T> where
T: CoordinateType, Iterate over the Points in this MultiPoint.
type Item = Point<T>
The type of the elements being iterated over.
type IntoIter = IntoIter<Point<T>>
Which kind of iterator are we turning this into?
fn into_iter(self) -> <MultiPoint<T> as IntoIterator>::IntoIter[src]
fn into_iter(self) -> <MultiPoint<T> as IntoIterator>::IntoIterCreates an iterator from a value. Read more
impl<T> PartialEq<MultiPoint<T>> for MultiPoint<T> where
T: PartialEq<T> + CoordinateType, [src]
impl<T> PartialEq<MultiPoint<T>> for MultiPoint<T> where
T: PartialEq<T> + CoordinateType, fn eq(&self, other: &MultiPoint<T>) -> bool[src]
fn eq(&self, other: &MultiPoint<T>) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &MultiPoint<T>) -> bool[src]
fn ne(&self, other: &MultiPoint<T>) -> boolThis method tests for !=.
impl<T, IP> From<Vec<IP>> for MultiPoint<T> where
IP: Into<Point<T>>,
T: CoordinateType, [src]
impl<T, IP> From<Vec<IP>> for MultiPoint<T> where
IP: Into<Point<T>>,
T: CoordinateType, fn from(v: Vec<IP>) -> MultiPoint<T>[src]
fn from(v: Vec<IP>) -> MultiPoint<T>Convert a Vec of Points (or Vec of things which can be converted to a Point) into a
MultiPoint.
impl<T, IP> From<IP> for MultiPoint<T> where
IP: Into<Point<T>>,
T: CoordinateType, [src]
impl<T, IP> From<IP> for MultiPoint<T> where
IP: Into<Point<T>>,
T: CoordinateType, fn from(x: IP) -> MultiPoint<T>[src]
fn from(x: IP) -> MultiPoint<T>Convert a single Point (or something which can be converted to a Point) into a
one-member MultiPoint
impl<T> From<MultiPoint<T>> for Geometry<T> where
T: CoordinateType, [src]
impl<T> From<MultiPoint<T>> for Geometry<T> where
T: CoordinateType, fn from(x: MultiPoint<T>) -> Geometry<T>[src]
fn from(x: MultiPoint<T>) -> Geometry<T>Performs the conversion.
impl<T> EuclideanDistance<T, MultiPoint<T>> for Point<T> where
T: Float, [src]
impl<T> EuclideanDistance<T, MultiPoint<T>> for Point<T> where
T: Float, fn euclidean_distance(&self, points: &MultiPoint<T>) -> T[src]
fn euclidean_distance(&self, points: &MultiPoint<T>) -> TMinimum distance from a Point to a MultiPoint
impl<T> EuclideanDistance<T, Point<T>> for MultiPoint<T> where
T: Float, [src]
impl<T> EuclideanDistance<T, Point<T>> for MultiPoint<T> where
T: Float, fn euclidean_distance(&self, point: &Point<T>) -> T[src]
fn euclidean_distance(&self, point: &Point<T>) -> TMinimum distance from a MultiPoint to a Point
impl<T> BoundingBox<T> for MultiPoint<T> where
T: CoordinateType, [src]
impl<T> BoundingBox<T> for MultiPoint<T> where
T: CoordinateType, type Output = Option<Bbox<T>>
fn bbox(&self) -> Self::Output[src]
fn bbox(&self) -> Self::OutputReturn the BoundingBox for a MultiPoint
impl<T> ConvexHull<T> for MultiPoint<T> where
T: Float, [src]
impl<T> ConvexHull<T> for MultiPoint<T> where
T: Float, fn convex_hull(&self) -> Polygon<T>[src]
fn convex_hull(&self) -> Polygon<T>Returns the convex hull of a Polygon. The hull is always oriented counter-clockwise. Read more
impl<T> ExtremeIndices<T> for MultiPoint<T> where
T: Float + Signed, [src]
impl<T> ExtremeIndices<T> for MultiPoint<T> where
T: Float + Signed, fn extreme_indices(&self) -> Result<Extremes, ()>[src]
fn extreme_indices(&self) -> Result<Extremes, ()>Find the extreme x and y indices of a convex Polygon Read more
impl<T> Rotate<T> for MultiPoint<T> where
T: Float + FromPrimitive, [src]
impl<T> Rotate<T> for MultiPoint<T> where
T: Float + FromPrimitive, fn rotate(&self, angle: T) -> Self[src]
fn rotate(&self, angle: T) -> SelfRotate the contained Points about their centroids by the given number of degrees
impl<T: CoordinateType, NT: CoordinateType> MapCoords<T, NT> for MultiPoint<T>[src]
impl<T: CoordinateType, NT: CoordinateType> MapCoords<T, NT> for MultiPoint<T>type Output = MultiPoint<NT>
fn map_coords(&self, func: &Fn(&(T, T)) -> (NT, NT)) -> Self::Output[src]
fn map_coords(&self, func: &Fn(&(T, T)) -> (NT, NT)) -> Self::OutputApply 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 MultiPoint<T>[src]
impl<T: CoordinateType, NT: CoordinateType> TryMapCoords<T, NT> for MultiPoint<T>type Output = MultiPoint<NT>
fn try_map_coords(
&self,
func: &Fn(&(T, T)) -> Result<(NT, NT), Error>
) -> Result<Self::Output, Error>[src]
fn try_map_coords(
&self,
func: &Fn(&(T, T)) -> Result<(NT, NT), Error>
) -> Result<Self::Output, Error>Map a fallible function over all the coordinates in a geometry, returning a Result Read more
impl<T: CoordinateType> MapCoordsInplace<T> for MultiPoint<T>[src]
impl<T: CoordinateType> MapCoordsInplace<T> for MultiPoint<T>fn map_coords_inplace(&mut self, func: &Fn(&(T, T)) -> (T, T))[src]
fn map_coords_inplace(&mut self, func: &Fn(&(T, T)) -> (T, T))Apply a function to all the coordinates in a geometric object, in place Read more
impl<F: Float> ClosestPoint<F> for MultiPoint<F>[src]
impl<F: Float> ClosestPoint<F> for MultiPoint<F>fn closest_point(&self, p: &Point<F>) -> Closest<F>[src]
fn closest_point(&self, p: &Point<F>) -> Closest<F>Find the closest point between self and p.
Auto Trait Implementations
impl<T> Send for MultiPoint<T> where
T: Send,
impl<T> Send for MultiPoint<T> where
T: Send, impl<T> Sync for MultiPoint<T> where
T: Sync,
impl<T> Sync for MultiPoint<T> where
T: Sync,