pub struct NDB {
pub icao: String,
pub lat: f64,
pub lon: f64,
pub alt: f64,
pub mag_var: f32,
pub frequency: u32,
}Expand description
Information on a single NDB station in the facilities cache.
Fields§
§icao: StringICAO of the facility.
lat: f64Latitude of the airport in facility.
lon: f64Longitude of the airport in facility.
alt: f64Altitude of the facility in meters.
mag_var: f32The magnetic variation of the waypoint in degrees.
frequency: u32Frequency of the station in Hz.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for NDB
impl RefUnwindSafe for NDB
impl Send for NDB
impl Sync for NDB
impl Unpin for NDB
impl UnwindSafe for NDB
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