#[non_exhaustive]pub enum UpdateSetupIntentPaymentMethodOptionsPaytoMandateOptionsPaymentSchedule {
Adhoc,
Annual,
Daily,
Fortnightly,
Monthly,
Quarterly,
SemiAnnual,
Weekly,
Unknown(String),
}Expand description
The periodicity at which payments will be collected. Defaults to adhoc.
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.
Adhoc
Annual
Daily
Fortnightly
Monthly
Quarterly
SemiAnnual
Weekly
Unknown(String)
An unrecognized value from Stripe. Should not be used as a request parameter.
Implementations§
Trait Implementations§
Source§impl Clone for UpdateSetupIntentPaymentMethodOptionsPaytoMandateOptionsPaymentSchedule
impl Clone for UpdateSetupIntentPaymentMethodOptionsPaytoMandateOptionsPaymentSchedule
Source§fn clone(
&self,
) -> UpdateSetupIntentPaymentMethodOptionsPaytoMandateOptionsPaymentSchedule
fn clone( &self, ) -> UpdateSetupIntentPaymentMethodOptionsPaytoMandateOptionsPaymentSchedule
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 PartialEq for UpdateSetupIntentPaymentMethodOptionsPaytoMandateOptionsPaymentSchedule
impl PartialEq for UpdateSetupIntentPaymentMethodOptionsPaytoMandateOptionsPaymentSchedule
Source§fn eq(
&self,
other: &UpdateSetupIntentPaymentMethodOptionsPaytoMandateOptionsPaymentSchedule,
) -> bool
fn eq( &self, other: &UpdateSetupIntentPaymentMethodOptionsPaytoMandateOptionsPaymentSchedule, ) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for UpdateSetupIntentPaymentMethodOptionsPaytoMandateOptionsPaymentSchedule
impl StructuralPartialEq for UpdateSetupIntentPaymentMethodOptionsPaytoMandateOptionsPaymentSchedule
Auto Trait Implementations§
impl Freeze for UpdateSetupIntentPaymentMethodOptionsPaytoMandateOptionsPaymentSchedule
impl RefUnwindSafe for UpdateSetupIntentPaymentMethodOptionsPaytoMandateOptionsPaymentSchedule
impl Send for UpdateSetupIntentPaymentMethodOptionsPaytoMandateOptionsPaymentSchedule
impl Sync for UpdateSetupIntentPaymentMethodOptionsPaytoMandateOptionsPaymentSchedule
impl Unpin for UpdateSetupIntentPaymentMethodOptionsPaytoMandateOptionsPaymentSchedule
impl UnwindSafe for UpdateSetupIntentPaymentMethodOptionsPaytoMandateOptionsPaymentSchedule
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