#[non_exhaustive]pub enum SubscriptionPaymentMethodOptionsMandateOptionsPixPaymentSchedule {
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 SubscriptionPaymentMethodOptionsMandateOptionsPixPaymentSchedule
impl Clone for SubscriptionPaymentMethodOptionsMandateOptionsPixPaymentSchedule
Source§fn clone(
&self,
) -> SubscriptionPaymentMethodOptionsMandateOptionsPixPaymentSchedule
fn clone( &self, ) -> SubscriptionPaymentMethodOptionsMandateOptionsPixPaymentSchedule
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 SubscriptionPaymentMethodOptionsMandateOptionsPixPaymentSchedule
Available on non-crate feature redact-generated-debug only.
impl Debug for SubscriptionPaymentMethodOptionsMandateOptionsPixPaymentSchedule
Available on non-crate feature
redact-generated-debug only.Source§impl FromValueOpt for SubscriptionPaymentMethodOptionsMandateOptionsPixPaymentSchedule
impl FromValueOpt for SubscriptionPaymentMethodOptionsMandateOptionsPixPaymentSchedule
fn from_value(v: Value) -> Option<Self>
Source§impl PartialEq for SubscriptionPaymentMethodOptionsMandateOptionsPixPaymentSchedule
impl PartialEq for SubscriptionPaymentMethodOptionsMandateOptionsPixPaymentSchedule
Source§fn eq(
&self,
other: &SubscriptionPaymentMethodOptionsMandateOptionsPixPaymentSchedule,
) -> bool
fn eq( &self, other: &SubscriptionPaymentMethodOptionsMandateOptionsPixPaymentSchedule, ) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for SubscriptionPaymentMethodOptionsMandateOptionsPixPaymentSchedule
impl StructuralPartialEq for SubscriptionPaymentMethodOptionsMandateOptionsPixPaymentSchedule
Auto Trait Implementations§
impl Freeze for SubscriptionPaymentMethodOptionsMandateOptionsPixPaymentSchedule
impl RefUnwindSafe for SubscriptionPaymentMethodOptionsMandateOptionsPixPaymentSchedule
impl Send for SubscriptionPaymentMethodOptionsMandateOptionsPixPaymentSchedule
impl Sync for SubscriptionPaymentMethodOptionsMandateOptionsPixPaymentSchedule
impl Unpin for SubscriptionPaymentMethodOptionsMandateOptionsPixPaymentSchedule
impl UnsafeUnpin for SubscriptionPaymentMethodOptionsMandateOptionsPixPaymentSchedule
impl UnwindSafe for SubscriptionPaymentMethodOptionsMandateOptionsPixPaymentSchedule
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