[][src]Struct nmea_0183::messages::GNSMessage

pub struct GNSMessage {
    pub time: Option<NaiveTime>,
    pub lat: Option<Degree>,
    pub ns: Option<NorthSouth>,
    pub lon: Option<Degree>,
    pub ew: Option<EastWest>,
    pub pos_mode: Vec<Fix>,
    pub num_sv: Option<u8>,
    pub hdop: Option<f64>,
    pub alt: Option<Meter>,
    pub sep: Option<Meter>,
    pub diff_age: Option<Second>,
    pub diff_station: Option<u8>,
    pub nav_status: Status,
}

GNSS fix data

Fields

time: Option<NaiveTime>

UTC time

lat: Option<Degree>

Latitude

ns: Option<NorthSouth>

North/South indicator

lon: Option<Degree>

Longitude

ew: Option<EastWest>

East/West indicator

pos_mode: Vec<Fix>

Positioning mode,

num_sv: Option<u8>

Number of satellites used

hdop: Option<f64>

Horizontal Dilution of Precision

alt: Option<Meter>

Altitude above mean sea level

sep: Option<Meter>

Geoid separation

diff_age: Option<Second>

Age of differential corrections

diff_station: Option<u8>

ID of station providing differential corrections

nav_status: Status

Navigational status indicator

Trait Implementations

impl PartialEq<GNSMessage> for GNSMessage[src]

impl Debug for GNSMessage[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

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.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]