pub struct Geocode {
pub short_street: String,
pub short_state: String,
pub short_country: String,
pub short_city: String,
pub long_street: String,
pub long_state: String,
pub long_country: String,
pub long_city: String,
pub city_id: String,
}
Fields§
§short_street: String
§short_state: String
§short_country: String
§short_city: String
§long_street: String
§long_state: String
§long_country: String
§long_city: String
§city_id: String
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
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