pub struct GpsCoordinates {
pub latitude: f64,
pub longitude: f64,
}
Expand description
GPS coordinates
Fields§
§latitude: f64
§longitude: f64
Trait Implementations§
Source§impl Clone for GpsCoordinates
impl Clone for GpsCoordinates
Source§fn clone(&self) -> GpsCoordinates
fn clone(&self) -> GpsCoordinates
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 GpsCoordinates
impl Debug for GpsCoordinates
Source§impl<'de> Deserialize<'de> for GpsCoordinates
impl<'de> Deserialize<'de> for GpsCoordinates
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for GpsCoordinates
impl RefUnwindSafe for GpsCoordinates
impl Send for GpsCoordinates
impl Sync for GpsCoordinates
impl Unpin for GpsCoordinates
impl UnwindSafe for GpsCoordinates
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