[][src]Struct nmea_0183::messages::GLLMessage

pub struct GLLMessage {
    pub lat: Option<Degree>,
    pub ns: NorthSouth,
    pub lon: Option<Degree>,
    pub ew: EastWest,
    pub time: Option<NaiveTime>,
    pub status: Status,
    pub pos_mode: Fix,
}

Latitude and longitude, with time of position fix and status

Fields

lat: Option<Degree>

Latitude

ns: NorthSouth

North/South indicator

lon: Option<Degree>

Longitude

ew: EastWest

East/West indicator

time: Option<NaiveTime>

UTC time

status: Status

Data validity status

pos_mode: Fix

Positioning mode

Trait Implementations

impl PartialEq<GLLMessage> for GLLMessage[src]

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