pub struct MultiLineString {
pub lines: Vec<LineString>,
}Expand description
A collection of line strings.
Fields§
§lines: Vec<LineString>The line strings in the collection.
Trait Implementations§
Source§impl Clone for MultiLineString
impl Clone for MultiLineString
Source§fn clone(&self) -> MultiLineString
fn clone(&self) -> MultiLineString
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 MultiLineString
impl RefUnwindSafe for MultiLineString
impl Send for MultiLineString
impl Sync for MultiLineString
impl Unpin for MultiLineString
impl UnsafeUnpin for MultiLineString
impl UnwindSafe for MultiLineString
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