pub struct ParseGeoPoint {
pub latitude: f64,
pub longitude: f64,
/* private fields */
}Expand description
Represents a geographical point.
Fields§
§latitude: f64§longitude: f64Implementations§
Trait Implementations§
Source§impl Clone for ParseGeoPoint
impl Clone for ParseGeoPoint
Source§fn clone(&self) -> ParseGeoPoint
fn clone(&self) -> ParseGeoPoint
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 ParseGeoPoint
impl Debug for ParseGeoPoint
Source§impl<'de> Deserialize<'de> for ParseGeoPoint
impl<'de> Deserialize<'de> for ParseGeoPoint
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
Source§impl PartialEq for ParseGeoPoint
impl PartialEq for ParseGeoPoint
Source§impl Serialize for ParseGeoPoint
impl Serialize for ParseGeoPoint
impl StructuralPartialEq for ParseGeoPoint
Auto Trait Implementations§
impl Freeze for ParseGeoPoint
impl RefUnwindSafe for ParseGeoPoint
impl Send for ParseGeoPoint
impl Sync for ParseGeoPoint
impl Unpin for ParseGeoPoint
impl UnwindSafe for ParseGeoPoint
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