[][src]Enum mavlink::common::MavEstimatorType

pub enum MavEstimatorType {
    MAV_ESTIMATOR_TYPE_UNKNOWN,
    MAV_ESTIMATOR_TYPE_NAIVE,
    MAV_ESTIMATOR_TYPE_VISION,
    MAV_ESTIMATOR_TYPE_VIO,
    MAV_ESTIMATOR_TYPE_GPS,
    MAV_ESTIMATOR_TYPE_GPS_INS,
    MAV_ESTIMATOR_TYPE_MOCAP,
    MAV_ESTIMATOR_TYPE_LIDAR,
    MAV_ESTIMATOR_TYPE_AUTOPILOT,
}

Variants

MAV_ESTIMATOR_TYPE_UNKNOWN
MAV_ESTIMATOR_TYPE_NAIVE
MAV_ESTIMATOR_TYPE_VISION
MAV_ESTIMATOR_TYPE_VIO
MAV_ESTIMATOR_TYPE_GPS
MAV_ESTIMATOR_TYPE_GPS_INS
MAV_ESTIMATOR_TYPE_MOCAP
MAV_ESTIMATOR_TYPE_LIDAR
MAV_ESTIMATOR_TYPE_AUTOPILOT

Trait Implementations

impl Clone for MavEstimatorType[src]

impl Copy for MavEstimatorType[src]

impl Debug for MavEstimatorType[src]

impl Default for MavEstimatorType[src]

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

impl FromPrimitive for MavEstimatorType[src]

impl PartialEq<MavEstimatorType> for MavEstimatorType[src]

impl Serialize for MavEstimatorType[src]

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