pub struct BlendENoteCityStateZip {
pub city: String,
pub postal_code: String,
pub state: String,
}Fields§
§city: StringThe name of the city.
postal_code: StringThe postal code (ZIP Code in the US) for the address. ZIP Code may be either 5 or 9 digits.
state: StringThe two-character representation of the US state, US Territory, Canadian Province, Military APO FPO, or Territory.
Trait Implementations§
Source§impl Debug for BlendENoteCityStateZip
impl Debug for BlendENoteCityStateZip
Source§impl<'de> Deserialize<'de> for BlendENoteCityStateZip
impl<'de> Deserialize<'de> for BlendENoteCityStateZip
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 BlendENoteCityStateZip
impl Display for BlendENoteCityStateZip
Auto Trait Implementations§
impl Freeze for BlendENoteCityStateZip
impl RefUnwindSafe for BlendENoteCityStateZip
impl Send for BlendENoteCityStateZip
impl Sync for BlendENoteCityStateZip
impl Unpin for BlendENoteCityStateZip
impl UnwindSafe for BlendENoteCityStateZip
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