[][src]Struct nmea_0183::messages::GSAMessage

pub struct GSAMessage {
    pub op_mode: OperationMode,
    pub nav_mode: NavigationMode,
    pub sattelite_ids: [Option<u8>; 12],
    pub pdop: Option<Meter>,
    pub hdop: Option<Meter>,
    pub vdop: Option<Meter>,
}

GNSS DOP and Active Satellites

Fields

op_mode: OperationMode

Operation mode

nav_mode: NavigationMode

Navigation mode

sattelite_ids: [Option<u8>; 12]

Satellite number

pdop: Option<Meter>

Position dilution of precision

hdop: Option<Meter>

Horizontal dilution of precision

vdop: Option<Meter>

Vertical dilution of precision

Trait Implementations

impl PartialEq<GSAMessage> for GSAMessage[src]

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