[−][src]Struct geo_types::MultiLineString
A collection of LineStrings.
Can be created from a Vec of LineStrings, or from an Iterator which yields LineStrings.
Iterating over this objects, yields the component LineStrings.
Trait Implementations
impl<T: Clone> Clone for MultiLineString<T> where
T: CoordinateType, [src]
T: CoordinateType,
fn clone(&self) -> MultiLineString<T>[src]
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more
impl<T: CoordinateType, ILS: Into<LineString<T>>> From<ILS> for MultiLineString<T>[src]
impl<T: CoordinateType> From<MultiLineString<T>> for Geometry<T>[src]
fn from(x: MultiLineString<T>) -> Geometry<T>[src]
impl<T: CoordinateType> IntoIterator for MultiLineString<T>[src]
type Item = LineString<T>
The type of the elements being iterated over.
type IntoIter = IntoIter<LineString<T>>
Which kind of iterator are we turning this into?
fn into_iter(self) -> Self::IntoIter[src]
impl<T: PartialEq> PartialEq<MultiLineString<T>> for MultiLineString<T> where
T: CoordinateType, [src]
T: CoordinateType,
fn eq(&self, other: &MultiLineString<T>) -> bool[src]
fn ne(&self, other: &MultiLineString<T>) -> bool[src]
impl<T: Debug> Debug for MultiLineString<T> where
T: CoordinateType, [src]
T: CoordinateType,
impl<T: CoordinateType, ILS: Into<LineString<T>>> FromIterator<ILS> for MultiLineString<T>[src]
fn from_iter<I: IntoIterator<Item = ILS>>(iter: I) -> Self[src]
Auto Trait Implementations
impl<T> Send for MultiLineString<T> where
T: Send,
T: Send,
impl<T> Sync for MultiLineString<T> where
T: Sync,
T: Sync,
Blanket Implementations
impl<T> From for T[src]
impl<I> IntoIterator for I where
I: Iterator, [src]
I: Iterator,
type Item = <I as Iterator>::Item
The type of the elements being iterated over.
type IntoIter = I
Which kind of iterator are we turning this into?
fn into_iter(self) -> I[src]
impl<T, U> Into for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
impl<T, U> TryFrom for T where
U: Into<T>, [src]
U: Into<T>,
type Error = !
🔬 This is a nightly-only experimental API. (
try_from)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T> Borrow for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> BorrowMut for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T, U> TryInto for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,