pub struct UpdateCustomerAddressParams {
pub _type: String,
pub customer_address: CustomerAddress,
}
Expand description
struct for passing parameters to the method update_customer_address
Fields§
§_type: String
Alphanumeric type of the address being modified.
customer_address: CustomerAddress
Trait Implementations§
Source§impl Clone for UpdateCustomerAddressParams
impl Clone for UpdateCustomerAddressParams
Source§fn clone(&self) -> UpdateCustomerAddressParams
fn clone(&self) -> UpdateCustomerAddressParams
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 UpdateCustomerAddressParams
impl Debug for UpdateCustomerAddressParams
Source§impl Default for UpdateCustomerAddressParams
impl Default for UpdateCustomerAddressParams
Source§fn default() -> UpdateCustomerAddressParams
fn default() -> UpdateCustomerAddressParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for UpdateCustomerAddressParams
impl RefUnwindSafe for UpdateCustomerAddressParams
impl Send for UpdateCustomerAddressParams
impl Sync for UpdateCustomerAddressParams
impl Unpin for UpdateCustomerAddressParams
impl UnwindSafe for UpdateCustomerAddressParams
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