pub enum CoordinateSystem {
Enu,
Ned,
Nwu,
Unknown(u8),
}Variants§
Enu
East-North-Up coordinate system
Ned
North-East-Down coordinate system
Nwu
North-West-Up coordinate system
Unknown(u8)
Trait Implementations§
Source§impl Clone for CoordinateSystem
impl Clone for CoordinateSystem
Source§fn clone(&self) -> CoordinateSystem
fn clone(&self) -> CoordinateSystem
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 CoordinateSystem
impl Debug for CoordinateSystem
Source§impl Default for CoordinateSystem
impl Default for CoordinateSystem
Source§fn default() -> CoordinateSystem
fn default() -> CoordinateSystem
Returns the “default value” for a type. Read more
Source§impl From<CoordinateSystem> for u8
impl From<CoordinateSystem> for u8
Source§fn from(value: CoordinateSystem) -> Self
fn from(value: CoordinateSystem) -> Self
Converts to this type from the input type.
Source§impl From<u8> for CoordinateSystem
impl From<u8> for CoordinateSystem
Source§impl Hash for CoordinateSystem
impl Hash for CoordinateSystem
Source§impl Ord for CoordinateSystem
impl Ord for CoordinateSystem
Source§fn cmp(&self, other: &CoordinateSystem) -> Ordering
fn cmp(&self, other: &CoordinateSystem) -> 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 CoordinateSystem
impl PartialEq for CoordinateSystem
Source§impl PartialOrd for CoordinateSystem
impl PartialOrd for CoordinateSystem
impl Copy for CoordinateSystem
impl Eq for CoordinateSystem
impl StructuralPartialEq for CoordinateSystem
Auto Trait Implementations§
impl Freeze for CoordinateSystem
impl RefUnwindSafe for CoordinateSystem
impl Send for CoordinateSystem
impl Sync for CoordinateSystem
impl Unpin for CoordinateSystem
impl UnwindSafe for CoordinateSystem
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