pub struct PartialAddressSchema {
pub street_address_line1: Option<String>,
pub street_address_line2: Option<String>,
pub city: String,
pub state: String,
pub zip_code: String,
pub zip_code_plus_four: Option<String>,
pub county_name: Option<String>,
}
Fields§
§street_address_line1: Option<String>
§street_address_line2: Option<String>
§city: String
§state: String
Two-digit US state code
zip_code: String
Five-digit US zip code
zip_code_plus_four: Option<String>
Four-digit additional US zip code numbers
county_name: Option<String>
Trait Implementations§
Source§impl Debug for PartialAddressSchema
impl Debug for PartialAddressSchema
Source§impl<'de> Deserialize<'de> for PartialAddressSchema
impl<'de> Deserialize<'de> for PartialAddressSchema
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
Source§impl Display for PartialAddressSchema
impl Display for PartialAddressSchema
Auto Trait Implementations§
impl Freeze for PartialAddressSchema
impl RefUnwindSafe for PartialAddressSchema
impl Send for PartialAddressSchema
impl Sync for PartialAddressSchema
impl Unpin for PartialAddressSchema
impl UnwindSafe for PartialAddressSchema
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