pub enum FlightsRequestType {
All,
Aircraft(String),
Arrival(String),
Departure(String),
}Variants§
Implementations§
Source§impl FlightsRequestType
impl FlightsRequestType
pub fn max_interval(&self) -> u64
Trait Implementations§
Source§impl Clone for FlightsRequestType
impl Clone for FlightsRequestType
Source§fn clone(&self) -> FlightsRequestType
fn clone(&self) -> FlightsRequestType
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for FlightsRequestType
impl RefUnwindSafe for FlightsRequestType
impl Send for FlightsRequestType
impl Sync for FlightsRequestType
impl Unpin for FlightsRequestType
impl UnwindSafe for FlightsRequestType
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