pub enum NatDirection {
East,
West,
Both,
Unknown,
}Expand description
Direction of flight level assignments for a North Atlantic Track.
North Atlantic Organized Track System (NAT) routes assign different flight levels for eastbound and westbound traffic to minimize conflicts while optimizing fuel efficiency.
§Variants
East: Track is valid only for eastbound flights (typically 0°-180°)West: Track is valid only for westbound flights (typically 180°-360°)Both: Track is valid for both directions (rare; used during special operations)Unknown: Direction could not be determined from available data
Variants§
Trait Implementations§
Source§impl Clone for NatDirection
impl Clone for NatDirection
Source§fn clone(&self) -> NatDirection
fn clone(&self) -> NatDirection
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 NatDirection
impl Debug for NatDirection
Source§impl<'de> Deserialize<'de> for NatDirection
impl<'de> Deserialize<'de> for NatDirection
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for NatDirection
impl PartialEq for NatDirection
Source§impl Serialize for NatDirection
impl Serialize for NatDirection
impl Eq for NatDirection
impl StructuralPartialEq for NatDirection
Auto Trait Implementations§
impl Freeze for NatDirection
impl RefUnwindSafe for NatDirection
impl Send for NatDirection
impl Sync for NatDirection
impl Unpin for NatDirection
impl UnsafeUnpin for NatDirection
impl UnwindSafe for NatDirection
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> CoordinateMetadata for Twhere
T: ?Sized,
impl<T> CoordinateMetadata for Twhere
T: ?Sized,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.