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