pub struct CustomerShippingDetailsInput {
pub name: Option<String>,
pub address: Option<AddressInput>,
pub phone: Option<String>,
pub instructions: Option<String>,
}Expand description
Shipping details input for customer creation.
Fields§
§name: Option<String>§address: Option<AddressInput>§phone: Option<String>§instructions: Option<String>Trait Implementations§
Source§impl Clone for CustomerShippingDetailsInput
impl Clone for CustomerShippingDetailsInput
Source§fn clone(&self) -> CustomerShippingDetailsInput
fn clone(&self) -> CustomerShippingDetailsInput
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 CustomerShippingDetailsInput
impl Debug for CustomerShippingDetailsInput
Source§impl Default for CustomerShippingDetailsInput
impl Default for CustomerShippingDetailsInput
Source§fn default() -> CustomerShippingDetailsInput
fn default() -> CustomerShippingDetailsInput
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for CustomerShippingDetailsInput
impl RefUnwindSafe for CustomerShippingDetailsInput
impl Send for CustomerShippingDetailsInput
impl Sync for CustomerShippingDetailsInput
impl Unpin for CustomerShippingDetailsInput
impl UnsafeUnpin for CustomerShippingDetailsInput
impl UnwindSafe for CustomerShippingDetailsInput
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