pub struct UpdateInvoiceQuery {
pub send_to_recipient: bool,
pub send_to_invoicer: bool,
}Expand description
The update invoice query.
Fields§
§send_to_recipient: boolIndicates whether to send the invoice update notification to the recipient.
send_to_invoicer: boolIndicates whether to send the invoice update notification to the merchant.
Trait Implementations§
Source§impl Clone for UpdateInvoiceQuery
impl Clone for UpdateInvoiceQuery
Source§fn clone(&self) -> UpdateInvoiceQuery
fn clone(&self) -> UpdateInvoiceQuery
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 UpdateInvoiceQuery
impl Debug for UpdateInvoiceQuery
Auto Trait Implementations§
impl Freeze for UpdateInvoiceQuery
impl RefUnwindSafe for UpdateInvoiceQuery
impl Send for UpdateInvoiceQuery
impl Sync for UpdateInvoiceQuery
impl Unpin for UpdateInvoiceQuery
impl UnwindSafe for UpdateInvoiceQuery
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