GpsPosition

Type Alias GpsPosition 

Source
pub type GpsPosition = Option<LatLon>;
Expand description

A parsed GPS position from an NMEA sentence.

None when the GPS has no fix (void RMC or quality=0 GGA).

Aliased Type§

pub enum GpsPosition {
    None,
    Some(LatLon),
}

Variants§

§1.0.0

None

No value.

§1.0.0

Some(LatLon)

Some value of type T.