pub enum CoordinateRepresentation {
DEFAULT,
U,
N,
S,
P,
G,
D,
}
Expand description
Coordinate representation
Variants§
DEFAULT
Default value, one space
U
UTM in Military Grid Reference System
N
UTM/UPS Northern hemisphere
S
UTM/UPS Southern hemisphere
P
UPS
G
Geographic
D
Decimal degrees
Trait Implementations§
Source§impl Clone for CoordinateRepresentation
impl Clone for CoordinateRepresentation
Source§fn clone(&self) -> CoordinateRepresentation
fn clone(&self) -> CoordinateRepresentation
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 CoordinateRepresentation
impl Debug for CoordinateRepresentation
Source§impl Default for CoordinateRepresentation
impl Default for CoordinateRepresentation
Source§fn default() -> CoordinateRepresentation
fn default() -> CoordinateRepresentation
Returns the “default value” for a type. Read more
Source§impl Display for CoordinateRepresentation
impl Display for CoordinateRepresentation
Source§impl FromStr for CoordinateRepresentation
impl FromStr for CoordinateRepresentation
Source§impl Ord for CoordinateRepresentation
impl Ord for CoordinateRepresentation
Source§fn cmp(&self, other: &CoordinateRepresentation) -> Ordering
fn cmp(&self, other: &CoordinateRepresentation) -> 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 CoordinateRepresentation
impl PartialEq for CoordinateRepresentation
Source§impl PartialOrd for CoordinateRepresentation
impl PartialOrd for CoordinateRepresentation
impl Copy for CoordinateRepresentation
impl Eq for CoordinateRepresentation
impl StructuralPartialEq for CoordinateRepresentation
Auto Trait Implementations§
impl Freeze for CoordinateRepresentation
impl RefUnwindSafe for CoordinateRepresentation
impl Send for CoordinateRepresentation
impl Sync for CoordinateRepresentation
impl Unpin for CoordinateRepresentation
impl UnwindSafe for CoordinateRepresentation
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