pub enum Altitude {
Gnd,
FeetAmsl(i32),
FeetAgl(i32),
FlightLevel(u16),
Unlimited,
Other(String),
}Expand description
Altitude, either ground or a certain height AMSL in feet.
Variants§
Gnd
Ground/surface level
FeetAmsl(i32)
Feet above mean sea level
FeetAgl(i32)
Feet above ground level
FlightLevel(u16)
Flight level
Unlimited
Unlimited
Other(String)
Other (could not be parsed)
Trait Implementations§
impl Eq for Altitude
impl StructuralPartialEq for Altitude
Auto Trait Implementations§
impl Freeze for Altitude
impl RefUnwindSafe for Altitude
impl Send for Altitude
impl Sync for Altitude
impl Unpin for Altitude
impl UnwindSafe for Altitude
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