[][src]Enum mavlink::common::MavMissionResult

pub enum MavMissionResult {
    MAV_MISSION_ACCEPTED,
    MAV_MISSION_ERROR,
    MAV_MISSION_UNSUPPORTED_FRAME,
    MAV_MISSION_UNSUPPORTED,
    MAV_MISSION_NO_SPACE,
    MAV_MISSION_INVALID,
    MAV_MISSION_INVALID_PARAM1,
    MAV_MISSION_INVALID_PARAM2,
    MAV_MISSION_INVALID_PARAM3,
    MAV_MISSION_INVALID_PARAM4,
    MAV_MISSION_INVALID_PARAM5_X,
    MAV_MISSION_INVALID_PARAM6_Y,
    MAV_MISSION_INVALID_PARAM7,
    MAV_MISSION_INVALID_SEQUENCE,
    MAV_MISSION_DENIED,
    MAV_MISSION_OPERATION_CANCELLED,
}

Variants

MAV_MISSION_ACCEPTED
MAV_MISSION_ERROR
MAV_MISSION_UNSUPPORTED_FRAME
MAV_MISSION_UNSUPPORTED
MAV_MISSION_NO_SPACE
MAV_MISSION_INVALID
MAV_MISSION_INVALID_PARAM1
MAV_MISSION_INVALID_PARAM2
MAV_MISSION_INVALID_PARAM3
MAV_MISSION_INVALID_PARAM4
MAV_MISSION_INVALID_PARAM5_X
MAV_MISSION_INVALID_PARAM6_Y
MAV_MISSION_INVALID_PARAM7
MAV_MISSION_INVALID_SEQUENCE
MAV_MISSION_DENIED
MAV_MISSION_OPERATION_CANCELLED

Trait Implementations

impl Clone for MavMissionResult[src]

impl Copy for MavMissionResult[src]

impl Debug for MavMissionResult[src]

impl Default for MavMissionResult[src]

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

impl FromPrimitive for MavMissionResult[src]

impl PartialEq<MavMissionResult> for MavMissionResult[src]

impl Serialize for MavMissionResult[src]

impl StructuralPartialEq for MavMissionResult[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.