[][src]Trait nmea_parser::LatLon

pub trait LatLon {
    fn latitude(&self) -> Option<f64>;
fn longitude(&self) -> Option<f64>; }

Provides access to geographical position in the implementing struct.

Required methods

fn latitude(&self) -> Option<f64>

Returns the latitude of the position contained by the object. If the position is not available returns None.

fn longitude(&self) -> Option<f64>

Returns the longitude of the position contained by the object. If the position is not available returns None.

Loading content...

Implementors

impl LatLon for AidToNavigationReport[src]

impl LatLon for BaseStationReport[src]

impl LatLon for BinaryAddressedMessage[src]

impl LatLon for VesselDynamicData[src]

impl LatLon for GgaData[src]

impl LatLon for GllData[src]

impl LatLon for RmcData[src]

Loading content...