pub struct Geographic {
pub latitude: Latitude,
pub longitude: Longitude,
}
Expand description
Geographic Coordinates (Latitude/Longitude)
Fields§
§latitude: Latitude
§longitude: Longitude
Trait Implementations§
Source§impl Clone for Geographic
impl Clone for Geographic
Source§fn clone(&self) -> Geographic
fn clone(&self) -> Geographic
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for Geographic
impl Debug for Geographic
impl Copy for Geographic
Auto Trait Implementations§
impl Freeze for Geographic
impl RefUnwindSafe for Geographic
impl Send for Geographic
impl Sync for Geographic
impl Unpin for Geographic
impl UnwindSafe for Geographic
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