pub struct Address {
pub name: String,
pub address_line1: String,
pub address_line2: Option<String>,
pub address_line3: Option<String>,
pub city: Option<String>,
pub district_or_county: Option<String>,
pub state_or_region: String,
pub postal_code: String,
pub country_code: String,
pub phone: Option<String>,
}Expand description
Address : A physical address.
Fields§
§name: StringThe name of the person, business or institution at the address.
address_line1: StringThe first line of the address.
address_line2: Option<String>Additional address information, if required.
address_line3: Option<String>Additional address information, if required.
city: Option<String>The city where the person, business, or institution is located. This property is required in all countries except Japan. It should not be used in Japan.
district_or_county: Option<String>The district or county where the person, business, or institution is located.
state_or_region: StringThe state or region where the person, business or institution is located.
postal_code: StringThe postal code of the address.
country_code: StringThe two digit country code. In ISO 3166-1 alpha-2 format.
phone: Option<String>The phone number of the person, business, or institution located at the address.
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Address
impl<'de> Deserialize<'de> for Address
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
impl StructuralPartialEq for Address
Auto Trait Implementations§
impl Freeze for Address
impl RefUnwindSafe for Address
impl Send for Address
impl Sync for Address
impl Unpin for Address
impl UnsafeUnpin for Address
impl UnwindSafe for Address
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