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