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

Read-only access to geographical position in the implementing type.

Required Methods

Return the latitude of the position contained by the object. If the position is not available return None.

Return the longitude of the position contained by the object. If the position is not available return None.

Implementors