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