pub struct ConsumerLendingAddressSchema {
pub street_address_line1: Option<String>,
pub street_address_line2: Option<String>,
pub city: Option<String>,
pub county: Option<String>,
pub state: Option<String>,
pub zip_code: Option<String>,
}
Fields§
§street_address_line1: Option<String>
§street_address_line2: Option<String>
§city: Option<String>
§county: Option<String>
§state: Option<String>
Two-character US state code
zip_code: Option<String>
Five-digit US zip code
Trait Implementations§
Source§impl Debug for ConsumerLendingAddressSchema
impl Debug for ConsumerLendingAddressSchema
Source§impl<'de> Deserialize<'de> for ConsumerLendingAddressSchema
impl<'de> Deserialize<'de> for ConsumerLendingAddressSchema
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 ConsumerLendingAddressSchema
impl RefUnwindSafe for ConsumerLendingAddressSchema
impl Send for ConsumerLendingAddressSchema
impl Sync for ConsumerLendingAddressSchema
impl Unpin for ConsumerLendingAddressSchema
impl UnwindSafe for ConsumerLendingAddressSchema
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