pub enum AirspaceClass {
A,
B,
C,
D,
E,
F,
G,
}Variants§
Trait Implementations§
Source§impl Clone for AirspaceClass
impl Clone for AirspaceClass
Source§fn clone(&self) -> AirspaceClass
fn clone(&self) -> AirspaceClass
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 AirspaceClass
impl Debug for AirspaceClass
Source§impl FromStr for AirspaceClass
impl FromStr for AirspaceClass
Source§impl Ord for AirspaceClass
impl Ord for AirspaceClass
Source§fn cmp(&self, other: &AirspaceClass) -> Ordering
fn cmp(&self, other: &AirspaceClass) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for AirspaceClass
impl PartialEq for AirspaceClass
Source§impl PartialOrd for AirspaceClass
impl PartialOrd for AirspaceClass
impl Copy for AirspaceClass
impl Eq for AirspaceClass
impl StructuralPartialEq for AirspaceClass
Auto Trait Implementations§
impl Freeze for AirspaceClass
impl RefUnwindSafe for AirspaceClass
impl Send for AirspaceClass
impl Sync for AirspaceClass
impl Unpin for AirspaceClass
impl UnwindSafe for AirspaceClass
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