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