pub struct MultiPoint {
pub points: Vec<Point>,
}Expand description
A collection of points.
Fields§
§points: Vec<Point>The points in the collection.
Trait Implementations§
Source§impl Clone for MultiPoint
impl Clone for MultiPoint
Source§fn clone(&self) -> MultiPoint
fn clone(&self) -> MultiPoint
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for MultiPoint
impl RefUnwindSafe for MultiPoint
impl Send for MultiPoint
impl Sync for MultiPoint
impl Unpin for MultiPoint
impl UnsafeUnpin for MultiPoint
impl UnwindSafe for MultiPoint
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more