pub struct Geocode {
pub latitude: Option<String>,
pub longitude: Option<String>,
}Expand description
Geocode : Defines the latitude and longitude of the access point.
Fields§
§latitude: Option<String>The latitude of access point.
longitude: Option<String>The longitude of access point.
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Geocode
impl<'de> Deserialize<'de> for Geocode
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
impl StructuralPartialEq for Geocode
Auto Trait Implementations§
impl Freeze for Geocode
impl RefUnwindSafe for Geocode
impl Send for Geocode
impl Sync for Geocode
impl Unpin for Geocode
impl UnwindSafe for Geocode
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