pub struct Airport {
pub icao: String,
pub lat: f64,
pub lon: f64,
pub alt: f64,
}
Expand description
Information on a single airport in the facilities cache.
Fields§
§icao: String
ICAO of the facility.
lat: f64
Latitude of the airport in facility.
lon: f64
Longitude of the airport in facility.
alt: f64
Altitude of the facility in meters.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Airport
impl RefUnwindSafe for Airport
impl Send for Airport
impl Sync for Airport
impl Unpin for Airport
impl UnwindSafe for Airport
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