[][src]Enum mavlink::ardupilotmega::CopterMode

pub enum CopterMode {
    COPTER_MODE_STABILIZE,
    COPTER_MODE_ACRO,
    COPTER_MODE_ALT_HOLD,
    COPTER_MODE_AUTO,
    COPTER_MODE_GUIDED,
    COPTER_MODE_LOITER,
    COPTER_MODE_RTL,
    COPTER_MODE_CIRCLE,
    COPTER_MODE_LAND,
    COPTER_MODE_DRIFT,
    COPTER_MODE_SPORT,
    COPTER_MODE_FLIP,
    COPTER_MODE_AUTOTUNE,
    COPTER_MODE_POSHOLD,
    COPTER_MODE_BRAKE,
    COPTER_MODE_THROW,
    COPTER_MODE_AVOID_ADSB,
    COPTER_MODE_GUIDED_NOGPS,
    COPTER_MODE_SMART_RTL,
}

Variants

COPTER_MODE_STABILIZE
COPTER_MODE_ACRO
COPTER_MODE_ALT_HOLD
COPTER_MODE_AUTO
COPTER_MODE_GUIDED
COPTER_MODE_LOITER
COPTER_MODE_RTL
COPTER_MODE_CIRCLE
COPTER_MODE_LAND
COPTER_MODE_DRIFT
COPTER_MODE_SPORT
COPTER_MODE_FLIP
COPTER_MODE_AUTOTUNE
COPTER_MODE_POSHOLD
COPTER_MODE_BRAKE
COPTER_MODE_THROW
COPTER_MODE_AVOID_ADSB
COPTER_MODE_GUIDED_NOGPS
COPTER_MODE_SMART_RTL

Trait Implementations

impl Clone for CopterMode[src]

impl Copy for CopterMode[src]

impl Debug for CopterMode[src]

impl Default for CopterMode[src]

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

impl FromPrimitive for CopterMode[src]

impl PartialEq<CopterMode> for CopterMode[src]

impl Serialize for CopterMode[src]

impl StructuralPartialEq for CopterMode[src]

Auto Trait Implementations

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.