[][src]Struct mavlink::ardupilotmega::AIRSPEED_AUTOCAL_DATA

pub struct AIRSPEED_AUTOCAL_DATA {
    pub vx: f32,
    pub vy: f32,
    pub vz: f32,
    pub diff_pressure: f32,
    pub EAS2TAS: f32,
    pub ratio: f32,
    pub state_x: f32,
    pub state_y: f32,
    pub state_z: f32,
    pub Pax: f32,
    pub Pby: f32,
    pub Pcz: f32,
}

id: 174 Airspeed auto-calibration..

Fields

vx: f32

GPS velocity north..

vy: f32

GPS velocity east..

vz: f32

GPS velocity down..

diff_pressure: f32

Differential pressure..

EAS2TAS: f32

Estimated to true airspeed ratio..

ratio: f32

Airspeed ratio..

state_x: f32

EKF state x..

state_y: f32

EKF state y..

state_z: f32

EKF state z..

Pax: f32

EKF Pax..

Pby: f32

EKF Pby..

Pcz: f32

EKF Pcz..

Implementations

impl AIRSPEED_AUTOCAL_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 AIRSPEED_AUTOCAL_DATA[src]

impl Debug for AIRSPEED_AUTOCAL_DATA[src]

impl Default for AIRSPEED_AUTOCAL_DATA[src]

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

impl PartialEq<AIRSPEED_AUTOCAL_DATA> for AIRSPEED_AUTOCAL_DATA[src]

impl Serialize for AIRSPEED_AUTOCAL_DATA[src]

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