pub struct ParsedAddress {
pub house_number: Option<String>,
pub road: Option<String>,
pub unit: Option<String>,
pub postcode: Option<String>,
pub city: Option<String>,
pub state: Option<String>,
pub country: Option<String>,
}Fields§
§house_number: Option<String>§road: Option<String>§unit: Option<String>§postcode: Option<String>§city: Option<String>§state: Option<String>§country: Option<String>Trait Implementations§
Source§impl Clone for ParsedAddress
impl Clone for ParsedAddress
Source§fn clone(&self) -> ParsedAddress
fn clone(&self) -> ParsedAddress
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 ParsedAddress
impl Debug for ParsedAddress
Source§impl Default for ParsedAddress
impl Default for ParsedAddress
Source§fn default() -> ParsedAddress
fn default() -> ParsedAddress
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ParsedAddress
impl<'de> Deserialize<'de> for ParsedAddress
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 ParsedAddress
impl RefUnwindSafe for ParsedAddress
impl Send for ParsedAddress
impl Sync for ParsedAddress
impl Unpin for ParsedAddress
impl UnsafeUnpin for ParsedAddress
impl UnwindSafe for ParsedAddress
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