pub type GpsPosition = Option<LatLon>;
A parsed GPS position from an NMEA sentence.
None when the GPS has no fix (void RMC or quality=0 GGA).
None
pub enum GpsPosition { None, Some(LatLon), }
No value.
Some value of type T.
T