pub struct LinearRing {
pub coords: Vec<Coord>,
}Fields§
§coords: Vec<Coord>Implementations§
Trait Implementations§
Source§impl Clone for LinearRing
impl Clone for LinearRing
Source§fn clone(&self) -> LinearRing
fn clone(&self) -> LinearRing
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for LinearRing
impl Debug for LinearRing
Source§impl<'de> Deserialize<'de> for LinearRing
impl<'de> Deserialize<'de> for LinearRing
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for LinearRing
impl PartialEq for LinearRing
Source§fn eq(&self, other: &LinearRing) -> bool
fn eq(&self, other: &LinearRing) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for LinearRing
impl Serialize for LinearRing
impl StructuralPartialEq for LinearRing
Auto Trait Implementations§
impl Freeze for LinearRing
impl RefUnwindSafe for LinearRing
impl Send for LinearRing
impl Sync for LinearRing
impl Unpin for LinearRing
impl UnsafeUnpin for LinearRing
impl UnwindSafe for LinearRing
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