#[non_exhaustive]#[repr(u32)]pub enum XPGeneralGraphicsType {
Show 19 variants
Ship = 4,
ILSGlideScope = 5,
MarkerLeft = 6,
Airport = 7,
NDB = 8,
VOR = 9,
RadioTower = 10,
AircraftCarrier = 11,
Fire = 12,
MarkerRight = 13,
CustomObject = 14,
CoolingTower = 15,
SmokeStack = 16,
Building = 17,
PowerLine = 18,
VORWithCompassRose = 19,
OilPlatform = 21,
OilPlatformSmall = 22,
WayPoint = 23,
}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.
Ship = 4
ILSGlideScope = 5
MarkerLeft = 6
Airport = 7
NDB = 8
VOR = 9
RadioTower = 10
AircraftCarrier = 11
Fire = 12
MarkerRight = 13
CustomObject = 14
CoolingTower = 15
SmokeStack = 16
Building = 17
PowerLine = 18
VORWithCompassRose = 19
OilPlatform = 21
OilPlatformSmall = 22
WayPoint = 23
Trait Implementations§
source§impl Clone for XPGeneralGraphicsType
impl Clone for XPGeneralGraphicsType
source§fn clone(&self) -> XPGeneralGraphicsType
fn clone(&self) -> XPGeneralGraphicsType
Returns a copy 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 XPGeneralGraphicsType
impl Debug for XPGeneralGraphicsType
source§impl Hash for XPGeneralGraphicsType
impl Hash for XPGeneralGraphicsType
source§impl PartialEq for XPGeneralGraphicsType
impl PartialEq for XPGeneralGraphicsType
source§fn eq(&self, other: &XPGeneralGraphicsType) -> bool
fn eq(&self, other: &XPGeneralGraphicsType) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl Copy for XPGeneralGraphicsType
impl Eq for XPGeneralGraphicsType
impl StructuralEq for XPGeneralGraphicsType
impl StructuralPartialEq for XPGeneralGraphicsType
Auto Trait Implementations§
impl RefUnwindSafe for XPGeneralGraphicsType
impl Send for XPGeneralGraphicsType
impl Sync for XPGeneralGraphicsType
impl Unpin for XPGeneralGraphicsType
impl UnwindSafe for XPGeneralGraphicsType
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