Struct mavlink::matrixpilot::ALTITUDES_DATA[][src]

pub struct ALTITUDES_DATA {
    pub time_boot_ms: u32,
    pub alt_gps: i32,
    pub alt_imu: i32,
    pub alt_barometric: i32,
    pub alt_optical_flow: i32,
    pub alt_range_finder: i32,
    pub alt_extra: i32,
}

Fields

time_boot_ms: u32alt_gps: i32alt_imu: i32alt_barometric: i32alt_optical_flow: i32alt_range_finder: i32alt_extra: i32

Implementations

impl ALTITUDES_DATA[src]

pub const ENCODED_LEN: usize[src]

pub fn deser(
    version: MavlinkVersion,
    _input: &[u8]
) -> Result<Self, ParserError>
[src]

pub fn ser(&self) -> Vec<u8>[src]

Trait Implementations

impl Clone for ALTITUDES_DATA[src]

impl Debug for ALTITUDES_DATA[src]

impl Default for ALTITUDES_DATA[src]

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

impl PartialEq<ALTITUDES_DATA> for ALTITUDES_DATA[src]

impl Serialize for ALTITUDES_DATA[src]

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