Struct mavlink::asluav::ASLCTRL_DATA_DATA[][src]

pub struct ASLCTRL_DATA_DATA {
    pub timestamp: u64,
    pub h: f32,
    pub hRef: f32,
    pub hRef_t: f32,
    pub PitchAngle: f32,
    pub PitchAngleRef: f32,
    pub q: f32,
    pub qRef: f32,
    pub uElev: f32,
    pub uThrot: f32,
    pub uThrot2: f32,
    pub nZ: f32,
    pub AirspeedRef: f32,
    pub YawAngle: f32,
    pub YawAngleRef: f32,
    pub RollAngle: f32,
    pub RollAngleRef: f32,
    pub p: f32,
    pub pRef: f32,
    pub r: f32,
    pub rRef: f32,
    pub uAil: f32,
    pub uRud: f32,
    pub aslctrl_mode: u8,
    pub SpoilersEngaged: u8,
}

Fields

timestamp: u64h: f32hRef: f32hRef_t: f32PitchAngle: f32PitchAngleRef: f32q: f32qRef: f32uElev: f32uThrot: f32uThrot2: f32nZ: f32AirspeedRef: f32YawAngle: f32YawAngleRef: f32RollAngle: f32RollAngleRef: f32p: f32pRef: f32r: f32rRef: f32uAil: f32uRud: f32aslctrl_mode: u8SpoilersEngaged: u8

Implementations

impl ASLCTRL_DATA_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 ASLCTRL_DATA_DATA[src]

impl Debug for ASLCTRL_DATA_DATA[src]

impl Default for ASLCTRL_DATA_DATA[src]

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

impl PartialEq<ASLCTRL_DATA_DATA> for ASLCTRL_DATA_DATA[src]

impl Serialize for ASLCTRL_DATA_DATA[src]

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