Struct mavlink::common::HIGH_LATENCY_DATA[][src]

pub struct HIGH_LATENCY_DATA {
    pub custom_mode: u32,
    pub latitude: i32,
    pub longitude: i32,
    pub roll: i16,
    pub pitch: i16,
    pub heading: u16,
    pub heading_sp: i16,
    pub altitude_amsl: i16,
    pub altitude_sp: i16,
    pub wp_distance: u16,
    pub base_mode: MavModeFlag,
    pub landed_state: MavLandedState,
    pub throttle: i8,
    pub airspeed: u8,
    pub airspeed_sp: u8,
    pub groundspeed: u8,
    pub climb_rate: i8,
    pub gps_nsat: u8,
    pub gps_fix_type: GpsFixType,
    pub battery_remaining: u8,
    pub temperature: i8,
    pub temperature_air: i8,
    pub failsafe: u8,
    pub wp_num: u8,
}

Fields

custom_mode: u32latitude: i32longitude: i32roll: i16pitch: i16heading: u16heading_sp: i16altitude_amsl: i16altitude_sp: i16wp_distance: u16base_mode: MavModeFlaglanded_state: MavLandedStatethrottle: i8airspeed: u8airspeed_sp: u8groundspeed: u8climb_rate: i8gps_nsat: u8gps_fix_type: GpsFixTypebattery_remaining: u8temperature: i8temperature_air: i8failsafe: u8wp_num: u8

Implementations

impl HIGH_LATENCY_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 HIGH_LATENCY_DATA[src]

impl Debug for HIGH_LATENCY_DATA[src]

impl Default for HIGH_LATENCY_DATA[src]

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

impl PartialEq<HIGH_LATENCY_DATA> for HIGH_LATENCY_DATA[src]

impl Serialize for HIGH_LATENCY_DATA[src]

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