pub enum ElevationDatum {
MeanSeaLevel,
Ellipsoid,
Geoid,
Local,
Unknown,
Custom(String),
}Variants§
Trait Implementations§
Source§impl Clone for ElevationDatum
impl Clone for ElevationDatum
Source§fn clone(&self) -> ElevationDatum
fn clone(&self) -> ElevationDatum
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 ElevationDatum
impl Debug for ElevationDatum
Source§impl Display for ElevationDatum
impl Display for ElevationDatum
Source§impl FromStr for ElevationDatum
impl FromStr for ElevationDatum
Source§impl Hash for ElevationDatum
impl Hash for ElevationDatum
Source§impl Ord for ElevationDatum
impl Ord for ElevationDatum
Source§fn cmp(&self, other: &ElevationDatum) -> Ordering
fn cmp(&self, other: &ElevationDatum) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for ElevationDatum
impl PartialEq for ElevationDatum
Source§impl PartialOrd for ElevationDatum
impl PartialOrd for ElevationDatum
impl Eq for ElevationDatum
impl StructuralPartialEq for ElevationDatum
Auto Trait Implementations§
impl Freeze for ElevationDatum
impl RefUnwindSafe for ElevationDatum
impl Send for ElevationDatum
impl Sync for ElevationDatum
impl Unpin for ElevationDatum
impl UnsafeUnpin for ElevationDatum
impl UnwindSafe for ElevationDatum
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