[][src]Struct nmea_0183::messages::GBSMessage

pub struct GBSMessage {
    pub time: Option<NaiveTime>,
    pub lat_err: Option<Meter>,
    pub lon_err: Option<Meter>,
    pub alt_err: Option<Meter>,
    pub sat_prn: Option<u8>,
    pub prob: Option<u8>,
    pub res: Option<f64>,
    pub std_dev: Option<f64>,
    pub system_id: Option<u8>,
    pub signal_id: Option<u8>,
}

GNSS Satellite Fault Detection

Fields

time: Option<NaiveTime>

UTC time to which this RAIM sentencebelongs

lat_err: Option<Meter>

Expected error in latitude

lon_err: Option<Meter>

Expected error in longitude

alt_err: Option<Meter>

Expected error in altitude

sat_prn: Option<u8>

Satellite ID of most likely failed satellite

prob: Option<u8>

Probability of missed detection

res: Option<f64>

Estimated bias of most likely failed satellite

std_dev: Option<f64>

Standard deviation of estimated bias

system_id: Option<u8>

NMEA defined GNSS System ID

signal_id: Option<u8>

NMEA defined GNSS Signal ID,

Trait Implementations

impl PartialEq<GBSMessage> for GBSMessage[src]

impl Debug for GBSMessage[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]