pub struct ShippingAddress {
pub line1: String,
pub line2: Option<String>,
pub city: String,
pub region: Option<String>,
pub postal_code: String,
pub country_code: String,
pub phone_number: String,
pub method: Option<ShippingMethod>,
pub first_name: Option<String>,
pub last_name: Option<String>,
}Expand description
Shipping address for physical cards
Fields§
§line1: String§line2: Option<String>§city: String§region: Option<String>§postal_code: String§country_code: String§phone_number: String§method: Option<ShippingMethod>§first_name: Option<String>§last_name: Option<String>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