[][src]Enum mavlink::common::MavGoto

pub enum MavGoto {
    MAV_GOTO_DO_HOLD,
    MAV_GOTO_DO_CONTINUE,
    MAV_GOTO_HOLD_AT_CURRENT_POSITION,
    MAV_GOTO_HOLD_AT_SPECIFIED_POSITION,
}

Variants

MAV_GOTO_DO_HOLD
MAV_GOTO_DO_CONTINUE
MAV_GOTO_HOLD_AT_CURRENT_POSITION
MAV_GOTO_HOLD_AT_SPECIFIED_POSITION

Trait Implementations

impl Clone for MavGoto[src]

impl Copy for MavGoto[src]

impl Debug for MavGoto[src]

impl Default for MavGoto[src]

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

impl FromPrimitive for MavGoto[src]

impl PartialEq<MavGoto> for MavGoto[src]

impl Serialize for MavGoto[src]

impl StructuralPartialEq for MavGoto[src]

Auto Trait Implementations

impl RefUnwindSafe for MavGoto

impl Send for MavGoto

impl Sync for MavGoto

impl Unpin for MavGoto

impl UnwindSafe for MavGoto

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.