pub struct PostalAddress {
pub formatted_address: String,
pub route_name: String,
pub neighbourhood: Option<String>,
pub city: String,
pub state: String,
pub place: Option<String>,
pub municipality_zone: Option<String>,
pub in_traffic_zone: bool,
pub in_odd_even_zone: bool,
}
Fields§
§formatted_address: String
§route_name: String
§neighbourhood: Option<String>
§city: String
§state: String
§place: Option<String>
§municipality_zone: Option<String>
§in_traffic_zone: bool
§in_odd_even_zone: bool
Trait Implementations§
Source§impl Debug for PostalAddress
impl Debug for PostalAddress
Source§impl<'de> Deserialize<'de> for PostalAddress
impl<'de> Deserialize<'de> for PostalAddress
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 PostalAddress
impl RefUnwindSafe for PostalAddress
impl Send for PostalAddress
impl Sync for PostalAddress
impl Unpin for PostalAddress
impl UnwindSafe for PostalAddress
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