pub struct CustomerShippingAddress {
pub address_line1: Option<String>,
pub address_line2: Option<String>,
pub city: Option<String>,
pub country: Option<String>,
pub state: Option<String>,
pub zipcode: Option<String>,
}Expand description
Shipping address information for a customer.
Fields§
§address_line1: Option<String>§address_line2: Option<String>§city: Option<String>§country: Option<String>§state: Option<String>§zipcode: Option<String>Trait Implementations§
Source§impl Clone for CustomerShippingAddress
impl Clone for CustomerShippingAddress
Source§fn clone(&self) -> CustomerShippingAddress
fn clone(&self) -> CustomerShippingAddress
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 CustomerShippingAddress
impl Debug for CustomerShippingAddress
Source§impl<'de> Deserialize<'de> for CustomerShippingAddress
impl<'de> Deserialize<'de> for CustomerShippingAddress
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 CustomerShippingAddress
impl RefUnwindSafe for CustomerShippingAddress
impl Send for CustomerShippingAddress
impl Sync for CustomerShippingAddress
impl Unpin for CustomerShippingAddress
impl UnwindSafe for CustomerShippingAddress
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