pub struct Waypoint {
pub icao: String,
pub lat: f64,
pub lon: f64,
pub alt: f64,
pub mag_var: f32,
}
Expand description
Information on a single waypoint 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.
mag_var: f32
The magnetic variation of the waypoint in degrees.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Waypoint
impl RefUnwindSafe for Waypoint
impl Send for Waypoint
impl Sync for Waypoint
impl Unpin for Waypoint
impl UnwindSafe for Waypoint
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