pub struct Address {
pub house_number: Option<String>,
pub road: Option<String>,
pub suburb: Option<String>,
pub city: Option<String>,
pub town: Option<String>,
pub village: Option<String>,
pub county: Option<String>,
pub state: Option<String>,
pub iso3166_2_lvl4: Option<String>,
pub postcode: Option<String>,
pub country: Option<String>,
pub country_code: Option<String>,
}Fields§
§house_number: Option<String>§road: Option<String>§suburb: Option<String>§city: Option<String>§town: Option<String>§village: Option<String>§county: Option<String>§state: Option<String>§iso3166_2_lvl4: Option<String>§postcode: Option<String>§country: Option<String>§country_code: Option<String>Trait Implementations§
Source§impl<'de> Deserialize<'de> for Address
impl<'de> Deserialize<'de> for Address
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 Address
impl RefUnwindSafe for Address
impl Send for Address
impl Sync for Address
impl Unpin for Address
impl UnwindSafe for Address
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