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