pub struct InvoicePaymentMethodOptionsPix {
pub amount_includes_iof: Option<InvoicePaymentMethodOptionsPixAmountIncludesIof>,
pub expires_after_seconds: Option<i64>,
}Fields§
§amount_includes_iof: Option<InvoicePaymentMethodOptionsPixAmountIncludesIof>Determines if the amount includes the IOF tax.
expires_after_seconds: Option<i64>The number of seconds (between 10 and 1209600) after which Pix payment will expire. Defaults to 86400 seconds.
Trait Implementations§
Source§impl Clone for InvoicePaymentMethodOptionsPix
impl Clone for InvoicePaymentMethodOptionsPix
Source§fn clone(&self) -> InvoicePaymentMethodOptionsPix
fn clone(&self) -> InvoicePaymentMethodOptionsPix
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl FromValueOpt for InvoicePaymentMethodOptionsPix
impl FromValueOpt for InvoicePaymentMethodOptionsPix
fn from_value(v: Value) -> Option<Self>
Source§impl PartialEq for InvoicePaymentMethodOptionsPix
impl PartialEq for InvoicePaymentMethodOptionsPix
Source§fn eq(&self, other: &InvoicePaymentMethodOptionsPix) -> bool
fn eq(&self, other: &InvoicePaymentMethodOptionsPix) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for InvoicePaymentMethodOptionsPix
impl StructuralPartialEq for InvoicePaymentMethodOptionsPix
Auto Trait Implementations§
impl Freeze for InvoicePaymentMethodOptionsPix
impl RefUnwindSafe for InvoicePaymentMethodOptionsPix
impl Send for InvoicePaymentMethodOptionsPix
impl Sync for InvoicePaymentMethodOptionsPix
impl Unpin for InvoicePaymentMethodOptionsPix
impl UnsafeUnpin for InvoicePaymentMethodOptionsPix
impl UnwindSafe for InvoicePaymentMethodOptionsPix
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