pub trait Geographic {
// Required methods
fn latitude(&self) -> f64;
fn longitude(&self) -> f64;
}Expand description
The type can produce geographic coordinates.
pub trait Geographic {
// Required methods
fn latitude(&self) -> f64;
fn longitude(&self) -> f64;
}The type can produce geographic coordinates.