[−][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]
impl<T: Debug> Debug for MultiLineString<T> where
T: CoordinateType, [src]
T: CoordinateType,
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, ILS: Into<LineString<T>>> FromIterator<ILS> for MultiLineString<T>[src]
fn from_iter<I: IntoIterator<Item = ILS>>(iter: I) -> Self[src]
impl<T: Hash> Hash for MultiLineString<T> where
T: CoordinateType, [src]
T: CoordinateType,
fn hash<__H: Hasher>(&self, state: &mut __H)[src]
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher, 1.3.0[src]
H: Hasher,
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> StructuralPartialEq for MultiLineString<T> where
T: CoordinateType, [src]
T: CoordinateType,
impl<T> TryFrom<Geometry<T>> for MultiLineString<T> where
T: Float, [src]
T: Float,
Auto Trait Implementations
impl<T> RefUnwindSafe for MultiLineString<T> where
T: RefUnwindSafe,
T: RefUnwindSafe,
impl<T> Send for MultiLineString<T> where
T: Send,
T: Send,
impl<T> Sync for MultiLineString<T> where
T: Sync,
T: Sync,
impl<T> Unpin for MultiLineString<T> where
T: Unpin,
T: Unpin,
impl<T> UnwindSafe for MultiLineString<T> where
T: UnwindSafe,
T: UnwindSafe,
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
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> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T[src]
fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
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, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,