pub enum PolygonType {
Polygon,
}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§
Polygon
Trait Implementations§
Source§impl Clone for PolygonType
impl Clone for PolygonType
Source§fn clone(&self) -> PolygonType
fn clone(&self) -> PolygonType
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 PolygonType
Source§impl Debug for PolygonType
impl Debug for PolygonType
Source§impl<'de> Deserialize<'de> for PolygonType
impl<'de> Deserialize<'de> for PolygonType
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 PolygonType
Source§impl PartialEq for PolygonType
impl PartialEq for PolygonType
Source§impl Serialize for PolygonType
impl Serialize for PolygonType
impl StructuralPartialEq for PolygonType
Auto Trait Implementations§
impl Freeze for PolygonType
impl RefUnwindSafe for PolygonType
impl Send for PolygonType
impl Sync for PolygonType
impl Unpin for PolygonType
impl UnsafeUnpin for PolygonType
impl UnwindSafe for PolygonType
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