#[non_exhaustive]#[repr(u8)]pub enum DisplayPosition {
Show 42 variants
Degree = 0,
DegreeMinute = 1,
DegreeMinuteSecond = 2,
AustrianGrid = 3,
BritishGrid = 4,
DutchGrid = 5,
HungarianGrid = 6,
FinnishGrid = 7,
GermanGrid = 8,
IcelandicGrid = 9,
IndonesianEquatorial = 10,
IndonesianIrian = 11,
IndonesianSouthern = 12,
IndiaZone0 = 13,
IndiaZoneIA = 14,
IndiaZoneIB = 15,
IndiaZoneIIA = 16,
IndiaZoneIIB = 17,
IndiaZoneIIIA = 18,
IndiaZoneIIIB = 19,
IndiaZoneIVA = 20,
IndiaZoneIVB = 21,
IrishTransverse = 22,
IrishGrid = 23,
Loran = 24,
MaidenheadGrid = 25,
MgrsGrid = 26,
NewZealandGrid = 27,
NewZealandTransverse = 28,
QatarGrid = 29,
ModifiedSwedishGrid = 30,
SwedishGrid = 31,
SouthAfricanGrid = 32,
SwissGrid = 33,
TaiwanGrid = 34,
UnitedStatesGrid = 35,
UtmUpsGrid = 36,
WestMalayan = 37,
BorneoRso = 38,
EstonianGrid = 39,
LatvianGrid = 40,
SwedishRef99Grid = 41,
}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.
Degree = 0
DegreeMinute = 1
DegreeMinuteSecond = 2
AustrianGrid = 3
BritishGrid = 4
DutchGrid = 5
HungarianGrid = 6
FinnishGrid = 7
GermanGrid = 8
IcelandicGrid = 9
IndonesianEquatorial = 10
IndonesianIrian = 11
IndonesianSouthern = 12
IndiaZone0 = 13
IndiaZoneIA = 14
IndiaZoneIB = 15
IndiaZoneIIA = 16
IndiaZoneIIB = 17
IndiaZoneIIIA = 18
IndiaZoneIIIB = 19
IndiaZoneIVA = 20
IndiaZoneIVB = 21
IrishTransverse = 22
IrishGrid = 23
Loran = 24
MaidenheadGrid = 25
MgrsGrid = 26
NewZealandGrid = 27
NewZealandTransverse = 28
QatarGrid = 29
ModifiedSwedishGrid = 30
SwedishGrid = 31
SouthAfricanGrid = 32
SwissGrid = 33
TaiwanGrid = 34
UnitedStatesGrid = 35
UtmUpsGrid = 36
WestMalayan = 37
BorneoRso = 38
EstonianGrid = 39
LatvianGrid = 40
SwedishRef99Grid = 41
Implementations§
Trait Implementations§
Source§impl Clone for DisplayPosition
impl Clone for DisplayPosition
Source§fn clone(&self) -> DisplayPosition
fn clone(&self) -> DisplayPosition
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 DisplayPosition
impl Debug for DisplayPosition
Source§impl Hash for DisplayPosition
impl Hash for DisplayPosition
Source§impl PartialEq for DisplayPosition
impl PartialEq for DisplayPosition
Source§fn eq(&self, other: &DisplayPosition) -> bool
fn eq(&self, other: &DisplayPosition) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for DisplayPosition
impl Eq for DisplayPosition
impl StructuralPartialEq for DisplayPosition
Auto Trait Implementations§
impl Freeze for DisplayPosition
impl RefUnwindSafe for DisplayPosition
impl Send for DisplayPosition
impl Sync for DisplayPosition
impl Unpin for DisplayPosition
impl UnsafeUnpin for DisplayPosition
impl UnwindSafe for DisplayPosition
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