[][src]Struct mavlink::ardupilotmega::EKF_STATUS_REPORT_DATA

pub struct EKF_STATUS_REPORT_DATA {
    pub velocity_variance: f32,
    pub pos_horiz_variance: f32,
    pub pos_vert_variance: f32,
    pub compass_variance: f32,
    pub terrain_alt_variance: f32,
    pub flags: EkfStatusFlags,
    pub airspeed_variance: f32,
}

id: 193 EKF Status message including flags and variances..

Fields

velocity_variance: f32

Velocity variance..

pos_horiz_variance: f32

Horizontal Position variance..

pos_vert_variance: f32

Vertical Position variance..

compass_variance: f32

Compass variance..

terrain_alt_variance: f32

Terrain Altitude variance..

flags: EkfStatusFlags

Flags..

airspeed_variance: f32

Airspeed variance..

Implementations

impl EKF_STATUS_REPORT_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 EKF_STATUS_REPORT_DATA[src]

impl Debug for EKF_STATUS_REPORT_DATA[src]

impl Default for EKF_STATUS_REPORT_DATA[src]

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

impl PartialEq<EKF_STATUS_REPORT_DATA> for EKF_STATUS_REPORT_DATA[src]

impl Serialize for EKF_STATUS_REPORT_DATA[src]

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