pub struct UpdateBillingAddrParams {
pub customer_id: String,
pub update_billing_address_request: Option<UpdateBillingAddressRequest>,
}
Expand description
struct for passing parameters to the method update_billing_addr
Fields§
§customer_id: String
Alphanumeric string identifying the customer.
update_billing_address_request: Option<UpdateBillingAddressRequest>
One or more billing address attributes
Trait Implementations§
Source§impl Clone for UpdateBillingAddrParams
impl Clone for UpdateBillingAddrParams
Source§fn clone(&self) -> UpdateBillingAddrParams
fn clone(&self) -> UpdateBillingAddrParams
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 UpdateBillingAddrParams
impl Debug for UpdateBillingAddrParams
Source§impl Default for UpdateBillingAddrParams
impl Default for UpdateBillingAddrParams
Source§fn default() -> UpdateBillingAddrParams
fn default() -> UpdateBillingAddrParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for UpdateBillingAddrParams
impl RefUnwindSafe for UpdateBillingAddrParams
impl Send for UpdateBillingAddrParams
impl Sync for UpdateBillingAddrParams
impl Unpin for UpdateBillingAddrParams
impl UnwindSafe for UpdateBillingAddrParams
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