#[non_exhaustive]pub enum PaymentMethodOptionsMandateOptionsPixPaymentSchedule {
Halfyearly,
Monthly,
Quarterly,
Weekly,
Yearly,
Unknown(String),
}Expand description
Schedule at which the future payments will be charged.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Halfyearly
Monthly
Quarterly
Weekly
Yearly
Unknown(String)
An unrecognized value from Stripe. Should not be used as a request parameter.
Implementations§
Trait Implementations§
Source§impl Clone for PaymentMethodOptionsMandateOptionsPixPaymentSchedule
impl Clone for PaymentMethodOptionsMandateOptionsPixPaymentSchedule
Source§fn clone(&self) -> PaymentMethodOptionsMandateOptionsPixPaymentSchedule
fn clone(&self) -> PaymentMethodOptionsMandateOptionsPixPaymentSchedule
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 Debug for PaymentMethodOptionsMandateOptionsPixPaymentSchedule
Available on non-crate feature redact-generated-debug only.
impl Debug for PaymentMethodOptionsMandateOptionsPixPaymentSchedule
Available on non-crate feature
redact-generated-debug only.Source§impl FromValueOpt for PaymentMethodOptionsMandateOptionsPixPaymentSchedule
impl FromValueOpt for PaymentMethodOptionsMandateOptionsPixPaymentSchedule
fn from_value(v: Value) -> Option<Self>
Source§impl PartialEq for PaymentMethodOptionsMandateOptionsPixPaymentSchedule
impl PartialEq for PaymentMethodOptionsMandateOptionsPixPaymentSchedule
Source§fn eq(
&self,
other: &PaymentMethodOptionsMandateOptionsPixPaymentSchedule,
) -> bool
fn eq( &self, other: &PaymentMethodOptionsMandateOptionsPixPaymentSchedule, ) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for PaymentMethodOptionsMandateOptionsPixPaymentSchedule
impl StructuralPartialEq for PaymentMethodOptionsMandateOptionsPixPaymentSchedule
Auto Trait Implementations§
impl Freeze for PaymentMethodOptionsMandateOptionsPixPaymentSchedule
impl RefUnwindSafe for PaymentMethodOptionsMandateOptionsPixPaymentSchedule
impl Send for PaymentMethodOptionsMandateOptionsPixPaymentSchedule
impl Sync for PaymentMethodOptionsMandateOptionsPixPaymentSchedule
impl Unpin for PaymentMethodOptionsMandateOptionsPixPaymentSchedule
impl UnsafeUnpin for PaymentMethodOptionsMandateOptionsPixPaymentSchedule
impl UnwindSafe for PaymentMethodOptionsMandateOptionsPixPaymentSchedule
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