[][src]Enum mavlink::common::MavMode

pub enum MavMode {
    MAV_MODE_PREFLIGHT,
    MAV_MODE_STABILIZE_DISARMED,
    MAV_MODE_STABILIZE_ARMED,
    MAV_MODE_MANUAL_DISARMED,
    MAV_MODE_MANUAL_ARMED,
    MAV_MODE_GUIDED_DISARMED,
    MAV_MODE_GUIDED_ARMED,
    MAV_MODE_AUTO_DISARMED,
    MAV_MODE_AUTO_ARMED,
    MAV_MODE_TEST_DISARMED,
    MAV_MODE_TEST_ARMED,
}

Variants

MAV_MODE_PREFLIGHT
MAV_MODE_STABILIZE_DISARMED
MAV_MODE_STABILIZE_ARMED
MAV_MODE_MANUAL_DISARMED
MAV_MODE_MANUAL_ARMED
MAV_MODE_GUIDED_DISARMED
MAV_MODE_GUIDED_ARMED
MAV_MODE_AUTO_DISARMED
MAV_MODE_AUTO_ARMED
MAV_MODE_TEST_DISARMED
MAV_MODE_TEST_ARMED

Trait Implementations

impl Clone for MavMode[src]

impl Copy for MavMode[src]

impl Debug for MavMode[src]

impl Default for MavMode[src]

impl<'de> Deserialize<'de> for MavMode[src]

impl FromPrimitive for MavMode[src]

impl PartialEq<MavMode> for MavMode[src]

impl Serialize for MavMode[src]

impl StructuralPartialEq for MavMode[src]

Auto Trait Implementations

impl RefUnwindSafe for MavMode

impl Send for MavMode

impl Sync for MavMode

impl Unpin for MavMode

impl UnwindSafe for MavMode

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.