pub struct AddressDetails {Show 14 fields
pub city: Option<String>,
pub city_district: Option<String>,
pub construction: Option<String>,
pub continent: Option<String>,
pub country: Option<String>,
pub country_code: Option<String>,
pub house_number: Option<String>,
pub neighbourhood: Option<String>,
pub postcode: Option<String>,
pub public_building: Option<String>,
pub state: Option<String>,
pub suburb: Option<String>,
pub road: Option<String>,
pub village: Option<String>,
}
Expand description
Address details in the result object
Fields§
§city: Option<String>
§city_district: Option<String>
§construction: Option<String>
§continent: Option<String>
§country: Option<String>
§country_code: Option<String>
§house_number: Option<String>
§neighbourhood: Option<String>
§postcode: Option<String>
§public_building: Option<String>
§state: Option<String>
§suburb: Option<String>
§road: Option<String>
§village: Option<String>
Trait Implementations§
Source§impl Clone for AddressDetails
impl Clone for AddressDetails
Source§fn clone(&self) -> AddressDetails
fn clone(&self) -> AddressDetails
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 AddressDetails
impl Debug for AddressDetails
Source§impl<'de> Deserialize<'de> for AddressDetails
impl<'de> Deserialize<'de> for AddressDetails
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 AddressDetails
impl RefUnwindSafe for AddressDetails
impl Send for AddressDetails
impl Sync for AddressDetails
impl Unpin for AddressDetails
impl UnwindSafe for AddressDetails
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