pub enum AircraftType {
Adsb,
Landplane,
Seaplane,
Tiltrotor,
Helicopter,
Gyrocopter,
Amphibian,
}
Variants§
Trait Implementations§
Source§impl Clone for AircraftType
impl Clone for AircraftType
Source§fn clone(&self) -> AircraftType
fn clone(&self) -> AircraftType
Returns a duplicate 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 moreSource§impl Debug for AircraftType
impl Debug for AircraftType
Source§impl<'de> Deserialize<'de> for AircraftType
impl<'de> Deserialize<'de> for AircraftType
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
Source§impl Hash for AircraftType
impl Hash for AircraftType
Source§impl PartialEq for AircraftType
impl PartialEq for AircraftType
Source§impl Serialize for AircraftType
impl Serialize for AircraftType
impl Copy for AircraftType
impl Eq for AircraftType
impl StructuralPartialEq for AircraftType
Auto Trait Implementations§
impl Freeze for AircraftType
impl RefUnwindSafe for AircraftType
impl Send for AircraftType
impl Sync for AircraftType
impl Unpin for AircraftType
impl UnwindSafe for AircraftType
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