[][src]Enum mavlink::common::MavSensorOrientation

pub enum MavSensorOrientation {
    MAV_SENSOR_ROTATION_NONE,
    MAV_SENSOR_ROTATION_YAW_45,
    MAV_SENSOR_ROTATION_YAW_90,
    MAV_SENSOR_ROTATION_YAW_135,
    MAV_SENSOR_ROTATION_YAW_180,
    MAV_SENSOR_ROTATION_YAW_225,
    MAV_SENSOR_ROTATION_YAW_270,
    MAV_SENSOR_ROTATION_YAW_315,
    MAV_SENSOR_ROTATION_ROLL_180,
    MAV_SENSOR_ROTATION_ROLL_180_YAW_45,
    MAV_SENSOR_ROTATION_ROLL_180_YAW_90,
    MAV_SENSOR_ROTATION_ROLL_180_YAW_135,
    MAV_SENSOR_ROTATION_PITCH_180,
    MAV_SENSOR_ROTATION_ROLL_180_YAW_225,
    MAV_SENSOR_ROTATION_ROLL_180_YAW_270,
    MAV_SENSOR_ROTATION_ROLL_180_YAW_315,
    MAV_SENSOR_ROTATION_ROLL_90,
    MAV_SENSOR_ROTATION_ROLL_90_YAW_45,
    MAV_SENSOR_ROTATION_ROLL_90_YAW_90,
    MAV_SENSOR_ROTATION_ROLL_90_YAW_135,
    MAV_SENSOR_ROTATION_ROLL_270,
    MAV_SENSOR_ROTATION_ROLL_270_YAW_45,
    MAV_SENSOR_ROTATION_ROLL_270_YAW_90,
    MAV_SENSOR_ROTATION_ROLL_270_YAW_135,
    MAV_SENSOR_ROTATION_PITCH_90,
    MAV_SENSOR_ROTATION_PITCH_270,
    MAV_SENSOR_ROTATION_PITCH_180_YAW_90,
    MAV_SENSOR_ROTATION_PITCH_180_YAW_270,
    MAV_SENSOR_ROTATION_ROLL_90_PITCH_90,
    MAV_SENSOR_ROTATION_ROLL_180_PITCH_90,
    MAV_SENSOR_ROTATION_ROLL_270_PITCH_90,
    MAV_SENSOR_ROTATION_ROLL_90_PITCH_180,
    MAV_SENSOR_ROTATION_ROLL_270_PITCH_180,
    MAV_SENSOR_ROTATION_ROLL_90_PITCH_270,
    MAV_SENSOR_ROTATION_ROLL_180_PITCH_270,
    MAV_SENSOR_ROTATION_ROLL_270_PITCH_270,
    MAV_SENSOR_ROTATION_ROLL_90_PITCH_180_YAW_90,
    MAV_SENSOR_ROTATION_ROLL_90_YAW_270,
    MAV_SENSOR_ROTATION_ROLL_90_PITCH_68_YAW_293,
    MAV_SENSOR_ROTATION_PITCH_315,
    MAV_SENSOR_ROTATION_ROLL_90_PITCH_315,
    MAV_SENSOR_ROTATION_CUSTOM,
}

Variants

MAV_SENSOR_ROTATION_NONE
MAV_SENSOR_ROTATION_YAW_45
MAV_SENSOR_ROTATION_YAW_90
MAV_SENSOR_ROTATION_YAW_135
MAV_SENSOR_ROTATION_YAW_180
MAV_SENSOR_ROTATION_YAW_225
MAV_SENSOR_ROTATION_YAW_270
MAV_SENSOR_ROTATION_YAW_315
MAV_SENSOR_ROTATION_ROLL_180
MAV_SENSOR_ROTATION_ROLL_180_YAW_45
MAV_SENSOR_ROTATION_ROLL_180_YAW_90
MAV_SENSOR_ROTATION_ROLL_180_YAW_135
MAV_SENSOR_ROTATION_PITCH_180
MAV_SENSOR_ROTATION_ROLL_180_YAW_225
MAV_SENSOR_ROTATION_ROLL_180_YAW_270
MAV_SENSOR_ROTATION_ROLL_180_YAW_315
MAV_SENSOR_ROTATION_ROLL_90
MAV_SENSOR_ROTATION_ROLL_90_YAW_45
MAV_SENSOR_ROTATION_ROLL_90_YAW_90
MAV_SENSOR_ROTATION_ROLL_90_YAW_135
MAV_SENSOR_ROTATION_ROLL_270
MAV_SENSOR_ROTATION_ROLL_270_YAW_45
MAV_SENSOR_ROTATION_ROLL_270_YAW_90
MAV_SENSOR_ROTATION_ROLL_270_YAW_135
MAV_SENSOR_ROTATION_PITCH_90
MAV_SENSOR_ROTATION_PITCH_270
MAV_SENSOR_ROTATION_PITCH_180_YAW_90
MAV_SENSOR_ROTATION_PITCH_180_YAW_270
MAV_SENSOR_ROTATION_ROLL_90_PITCH_90
MAV_SENSOR_ROTATION_ROLL_180_PITCH_90
MAV_SENSOR_ROTATION_ROLL_270_PITCH_90
MAV_SENSOR_ROTATION_ROLL_90_PITCH_180
MAV_SENSOR_ROTATION_ROLL_270_PITCH_180
MAV_SENSOR_ROTATION_ROLL_90_PITCH_270
MAV_SENSOR_ROTATION_ROLL_180_PITCH_270
MAV_SENSOR_ROTATION_ROLL_270_PITCH_270
MAV_SENSOR_ROTATION_ROLL_90_PITCH_180_YAW_90
MAV_SENSOR_ROTATION_ROLL_90_YAW_270
MAV_SENSOR_ROTATION_ROLL_90_PITCH_68_YAW_293
MAV_SENSOR_ROTATION_PITCH_315
MAV_SENSOR_ROTATION_ROLL_90_PITCH_315
MAV_SENSOR_ROTATION_CUSTOM

Trait Implementations

impl Clone for MavSensorOrientation[src]

impl Copy for MavSensorOrientation[src]

impl Debug for MavSensorOrientation[src]

impl Default for MavSensorOrientation[src]

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

impl FromPrimitive for MavSensorOrientation[src]

impl PartialEq<MavSensorOrientation> for MavSensorOrientation[src]

impl Serialize for MavSensorOrientation[src]

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