pub struct ShippingAddress {
pub country_code: String,
pub state: String,
pub city: String,
pub street_line1: String,
pub street_line2: String,
pub post_code: String,
}
Expand description
This object represents a shipping address.
Fields§
§country_code: String
Two-letter ISO 3166-1 alpha-2 country code
state: String
State, if applicable
city: String
City
street_line1: String
First line for the address
street_line2: String
Second line for the address
post_code: String
Address post code
Implementations§
Trait Implementations§
Source§impl Clone for ShippingAddress
impl Clone for ShippingAddress
Source§fn clone(&self) -> ShippingAddress
fn clone(&self) -> ShippingAddress
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for ShippingAddress
impl Debug for ShippingAddress
Source§impl<'de> Deserialize<'de> for ShippingAddress
impl<'de> Deserialize<'de> for ShippingAddress
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 ShippingAddress
impl RefUnwindSafe for ShippingAddress
impl Send for ShippingAddress
impl Sync for ShippingAddress
impl Unpin for ShippingAddress
impl UnwindSafe for ShippingAddress
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