Enum FeatureIdentifier
#[non_exhaustive]pub enum FeatureIdentifier {
Null,
UInt(u64),
Int(i64),
Double(f64),
String(String),
}Expand description
GeoJSON feature identifier value.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Trait Implementations§
§impl Clone for FeatureIdentifier
impl Clone for FeatureIdentifier
§fn clone(&self) -> FeatureIdentifier
fn clone(&self) -> FeatureIdentifier
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 more§impl Debug for FeatureIdentifier
impl Debug for FeatureIdentifier
§impl Default for FeatureIdentifier
impl Default for FeatureIdentifier
§fn default() -> FeatureIdentifier
fn default() -> FeatureIdentifier
Returns the “default value” for a type. Read more
§impl PartialEq for FeatureIdentifier
impl PartialEq for FeatureIdentifier
impl StructuralPartialEq for FeatureIdentifier
Auto Trait Implementations§
impl Freeze for FeatureIdentifier
impl RefUnwindSafe for FeatureIdentifier
impl Send for FeatureIdentifier
impl Sync for FeatureIdentifier
impl Unpin for FeatureIdentifier
impl UnsafeUnpin for FeatureIdentifier
impl UnwindSafe for FeatureIdentifier
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