pub struct FullLiveFlightQuery {Show 16 fields
pub bounds: Option<Bounds>,
pub flights: Option<Vec<String>>,
pub callsigns: Option<Vec<String>>,
pub registrations: Option<Vec<String>>,
pub painted_as: Option<Vec<String>>,
pub operating_as: Option<Vec<String>>,
pub airports: Option<Vec<String>>,
pub routes: Option<Vec<String>>,
pub aircraft: Option<Vec<String>>,
pub altitude_ranges: Option<Vec<ApiRange>>,
pub squawks: Option<Vec<u16>>,
pub categories: Option<Vec<char>>,
pub data_sources: Option<Vec<String>>,
pub airspaces: Option<Vec<String>>,
pub gspeed: Option<ApiRangeEnum>,
pub limit: Option<u32>,
}Expand description
Represents a query for flight positions.
Fields§
§bounds: Option<Bounds>§flights: Option<Vec<String>>§callsigns: Option<Vec<String>>§registrations: Option<Vec<String>>§painted_as: Option<Vec<String>>§operating_as: Option<Vec<String>>§airports: Option<Vec<String>>§routes: Option<Vec<String>>§aircraft: Option<Vec<String>>§altitude_ranges: Option<Vec<ApiRange>>§squawks: Option<Vec<u16>>§categories: Option<Vec<char>>§data_sources: Option<Vec<String>>§airspaces: Option<Vec<String>>§gspeed: Option<ApiRangeEnum>§limit: Option<u32>Trait Implementations§
Source§impl Debug for FullLiveFlightQuery
impl Debug for FullLiveFlightQuery
Source§impl Default for FullLiveFlightQuery
impl Default for FullLiveFlightQuery
Source§fn default() -> FullLiveFlightQuery
fn default() -> FullLiveFlightQuery
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for FullLiveFlightQuery
impl<'de> Deserialize<'de> for FullLiveFlightQuery
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 FullLiveFlightQuery
impl RefUnwindSafe for FullLiveFlightQuery
impl Send for FullLiveFlightQuery
impl Sync for FullLiveFlightQuery
impl Unpin for FullLiveFlightQuery
impl UnsafeUnpin for FullLiveFlightQuery
impl UnwindSafe for FullLiveFlightQuery
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