pub enum OperationalStatus {
Undeclared,
Ground,
Airborne,
Emergency,
RemoteIdSystemFailure,
}Variants§
Trait Implementations§
Source§impl Clone for OperationalStatus
impl Clone for OperationalStatus
Source§fn clone(&self) -> OperationalStatus
fn clone(&self) -> OperationalStatus
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for OperationalStatus
Source§impl Debug for OperationalStatus
impl Debug for OperationalStatus
Source§impl From<OperationalStatus> for u8
impl From<OperationalStatus> for u8
Source§fn from(val: OperationalStatus) -> Self
fn from(val: OperationalStatus) -> Self
Converts to this type from the input type.
Source§impl From<u8> for OperationalStatus
impl From<u8> for OperationalStatus
Source§impl PartialEq for OperationalStatus
impl PartialEq for OperationalStatus
Source§fn eq(&self, other: &OperationalStatus) -> bool
fn eq(&self, other: &OperationalStatus) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for OperationalStatus
Auto Trait Implementations§
impl Freeze for OperationalStatus
impl RefUnwindSafe for OperationalStatus
impl Send for OperationalStatus
impl Sync for OperationalStatus
impl Unpin for OperationalStatus
impl UnsafeUnpin for OperationalStatus
impl UnwindSafe for OperationalStatus
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