pub struct NasrField15Data {
pub points: Vec<NasrPoint>,
pub airways: Vec<NasrAirwaySegment>,
pub sid_designators: Vec<String>,
pub star_designators: Vec<String>,
pub sid_legs: Vec<NasrProcedureLeg>,
pub star_legs: Vec<NasrProcedureLeg>,
}Expand description
Complete Field15 navigation data for a single AIRAC cycle.
This is the result of parsing all navigation-related CSV files from NASR. It contains waypoints, airways, and procedures that can be used to resolve and enrich flight routes encoded in ICAO Field 15 format.
Fields§
§points: Vec<NasrPoint>All navigation points (waypoints, navaids, fixes)
airways: Vec<NasrAirwaySegment>All ATS route segments (airways)
sid_designators: Vec<String>SID procedure identifiers
star_designators: Vec<String>STAR procedure identifiers
sid_legs: Vec<NasrProcedureLeg>All legs for SID procedures
star_legs: Vec<NasrProcedureLeg>All legs for STAR procedures
Trait Implementations§
Source§impl Clone for NasrField15Data
impl Clone for NasrField15Data
Source§fn clone(&self) -> NasrField15Data
fn clone(&self) -> NasrField15Data
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 NasrField15Data
impl Debug for NasrField15Data
Source§impl Default for NasrField15Data
impl Default for NasrField15Data
Source§fn default() -> NasrField15Data
fn default() -> NasrField15Data
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for NasrField15Data
impl<'de> Deserialize<'de> for NasrField15Data
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
Auto Trait Implementations§
impl Freeze for NasrField15Data
impl RefUnwindSafe for NasrField15Data
impl Send for NasrField15Data
impl Sync for NasrField15Data
impl Unpin for NasrField15Data
impl UnsafeUnpin for NasrField15Data
impl UnwindSafe for NasrField15Data
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