pub struct LatLon {
pub latitude: f64,
pub longitude: f64,
}Expand description
Latitude/longitude in decimal degrees.
Fields§
§latitude: f64Latitude in decimal degrees (positive = N, negative = S).
longitude: f64Longitude in decimal degrees (positive = E, negative = W).
Trait Implementations§
impl StructuralPartialEq for LatLon
Auto Trait Implementations§
impl Freeze for LatLon
impl RefUnwindSafe for LatLon
impl Send for LatLon
impl Sync for LatLon
impl Unpin for LatLon
impl UnwindSafe for LatLon
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more