pub enum LineStringType {
LineString,
}Expand description
The "type" member of a single geometry kind: a string literal,
which is what makes the type assignable to the native geometry.
Variants§
LineString
Trait Implementations§
Source§impl Clone for LineStringType
impl Clone for LineStringType
Source§fn clone(&self) -> LineStringType
fn clone(&self) -> LineStringType
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 moreimpl Copy for LineStringType
Source§impl Debug for LineStringType
impl Debug for LineStringType
Source§impl<'de> Deserialize<'de> for LineStringType
impl<'de> Deserialize<'de> for LineStringType
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
impl Eq for LineStringType
Source§impl PartialEq for LineStringType
impl PartialEq for LineStringType
Source§impl Serialize for LineStringType
impl Serialize for LineStringType
impl StructuralPartialEq for LineStringType
Auto Trait Implementations§
impl Freeze for LineStringType
impl RefUnwindSafe for LineStringType
impl Send for LineStringType
impl Sync for LineStringType
impl Unpin for LineStringType
impl UnsafeUnpin for LineStringType
impl UnwindSafe for LineStringType
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