pub struct Track {
pub timestamp: String,
pub lat: f64,
pub lon: f64,
pub alt: u32,
pub gspeed: u32,
pub vspeed: u32,
pub track: u32,
pub squawk: String,
pub callsign: String,
pub source: String,
}Expand description
Individual Tracks for flight-tracks endpoint
Fields§
§timestamp: String§lat: f64§lon: f64§alt: u32§gspeed: u32§vspeed: u32§track: u32§squawk: String§callsign: String§source: StringTrait Implementations§
Source§impl<'de> Deserialize<'de> for Track
impl<'de> Deserialize<'de> for Track
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 Track
impl RefUnwindSafe for Track
impl Send for Track
impl Sync for Track
impl Unpin for Track
impl UnsafeUnpin for Track
impl UnwindSafe for Track
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