[][src]Struct mavlink::common::GPS2_RTK_DATA

pub struct GPS2_RTK_DATA {
    pub time_last_baseline_ms: u32,
    pub tow: u32,
    pub baseline_a_mm: i32,
    pub baseline_b_mm: i32,
    pub baseline_c_mm: i32,
    pub accuracy: u32,
    pub iar_num_hypotheses: i32,
    pub wn: u16,
    pub rtk_receiver_id: u8,
    pub rtk_health: u8,
    pub rtk_rate: u8,
    pub nsats: u8,
    pub baseline_coords_type: RtkBaselineCoordinateSystem,
}

id: 128 RTK GPS data. Gives information on the relative baseline calculation the GPS is reporting.

Fields

time_last_baseline_ms: u32

id: 128 RTK GPS data. Gives information on the relative baseline calculation the GPS is reporting.

tow: u32

id: 128 RTK GPS data. Gives information on the relative baseline calculation the GPS is reporting.

baseline_a_mm: i32

id: 128 RTK GPS data. Gives information on the relative baseline calculation the GPS is reporting.

baseline_b_mm: i32

id: 128 RTK GPS data. Gives information on the relative baseline calculation the GPS is reporting.

baseline_c_mm: i32

id: 128 RTK GPS data. Gives information on the relative baseline calculation the GPS is reporting.

accuracy: u32

id: 128 RTK GPS data. Gives information on the relative baseline calculation the GPS is reporting.

iar_num_hypotheses: i32

id: 128 RTK GPS data. Gives information on the relative baseline calculation the GPS is reporting.

wn: u16

id: 128 RTK GPS data. Gives information on the relative baseline calculation the GPS is reporting.

rtk_receiver_id: u8

id: 128 RTK GPS data. Gives information on the relative baseline calculation the GPS is reporting.

rtk_health: u8

id: 128 RTK GPS data. Gives information on the relative baseline calculation the GPS is reporting.

rtk_rate: u8

id: 128 RTK GPS data. Gives information on the relative baseline calculation the GPS is reporting.

nsats: u8

id: 128 RTK GPS data. Gives information on the relative baseline calculation the GPS is reporting.

baseline_coords_type: RtkBaselineCoordinateSystem

id: 128 RTK GPS data. Gives information on the relative baseline calculation the GPS is reporting.

Implementations

impl GPS2_RTK_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 GPS2_RTK_DATA[src]

impl Debug for GPS2_RTK_DATA[src]

impl Default for GPS2_RTK_DATA[src]

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

impl PartialEq<GPS2_RTK_DATA> for GPS2_RTK_DATA[src]

impl Serialize for GPS2_RTK_DATA[src]

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