pub struct CreateCustomerShippingAddress {
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>,
}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 CreateCustomerShippingAddress
impl Clone for CreateCustomerShippingAddress
Source§fn clone(&self) -> CreateCustomerShippingAddress
fn clone(&self) -> CreateCustomerShippingAddress
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<'de> Deserialize<'de> for CreateCustomerShippingAddress
impl<'de> Deserialize<'de> for CreateCustomerShippingAddress
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 CreateCustomerShippingAddress
impl RefUnwindSafe for CreateCustomerShippingAddress
impl Send for CreateCustomerShippingAddress
impl Sync for CreateCustomerShippingAddress
impl Unpin for CreateCustomerShippingAddress
impl UnwindSafe for CreateCustomerShippingAddress
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