pub struct GetInvoiceParams {
pub month: String,
pub year: String,
}
Expand description
struct for passing parameters to the method get_invoice
Fields§
§month: String
2-digit month.
year: String
4-digit year.
Trait Implementations§
Source§impl Clone for GetInvoiceParams
impl Clone for GetInvoiceParams
Source§fn clone(&self) -> GetInvoiceParams
fn clone(&self) -> GetInvoiceParams
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 GetInvoiceParams
impl Debug for GetInvoiceParams
Source§impl Default for GetInvoiceParams
impl Default for GetInvoiceParams
Source§fn default() -> GetInvoiceParams
fn default() -> GetInvoiceParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for GetInvoiceParams
impl RefUnwindSafe for GetInvoiceParams
impl Send for GetInvoiceParams
impl Sync for GetInvoiceParams
impl Unpin for GetInvoiceParams
impl UnwindSafe for GetInvoiceParams
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