#[non_exhaustive]pub enum UpdateSourceMandateInterval {
OneTime,
Scheduled,
Variable,
Unknown(String),
}Expand description
The interval of debits permitted by the mandate.
Either one_time (just permitting a single debit), scheduled (with debits on an agreed schedule or for clearly-defined events), or variable(for debits with any frequency).
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.
OneTime
Scheduled
Variable
Unknown(String)
An unrecognized value from Stripe. Should not be used as a request parameter.
Implementations§
Trait Implementations§
Source§impl Clone for UpdateSourceMandateInterval
impl Clone for UpdateSourceMandateInterval
Source§fn clone(&self) -> UpdateSourceMandateInterval
fn clone(&self) -> UpdateSourceMandateInterval
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 UpdateSourceMandateInterval
Available on non-crate feature redact-generated-debug only.
impl Debug for UpdateSourceMandateInterval
Available on non-crate feature
redact-generated-debug only.impl Eq for UpdateSourceMandateInterval
impl StructuralPartialEq for UpdateSourceMandateInterval
Auto Trait Implementations§
impl Freeze for UpdateSourceMandateInterval
impl RefUnwindSafe for UpdateSourceMandateInterval
impl Send for UpdateSourceMandateInterval
impl Sync for UpdateSourceMandateInterval
impl Unpin for UpdateSourceMandateInterval
impl UnsafeUnpin for UpdateSourceMandateInterval
impl UnwindSafe for UpdateSourceMandateInterval
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