#[non_exhaustive]pub enum WaypointType {
Airport,
Ndb,
Vor,
Int,
IntVrp,
User,
}Expand description
A Garmin waypoint type. Recognized values round-trip on export;
an unknown type is coerced to USER WAYPOINT.
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.
Airport
AIRPORT.
Ndb
NDB.
Vor
VOR.
Int
INT (enroute intersection / fix).
IntVrp
INT-VRP (visual reporting point).
User
USER WAYPOINT (operator-defined lat/lon).
Implementations§
Source§impl WaypointType
impl WaypointType
Trait Implementations§
Source§impl Clone for WaypointType
impl Clone for WaypointType
Source§fn clone(&self) -> WaypointType
fn clone(&self) -> WaypointType
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 moreimpl Copy for WaypointType
Source§impl Debug for WaypointType
impl Debug for WaypointType
impl Eq for WaypointType
Source§impl PartialEq for WaypointType
impl PartialEq for WaypointType
Source§fn eq(&self, other: &WaypointType) -> bool
fn eq(&self, other: &WaypointType) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for WaypointType
Auto Trait Implementations§
impl Freeze for WaypointType
impl RefUnwindSafe for WaypointType
impl Send for WaypointType
impl Sync for WaypointType
impl Unpin for WaypointType
impl UnsafeUnpin for WaypointType
impl UnwindSafe for WaypointType
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