#[non_exhaustive]pub enum CreateIssuingCardSpendingControlsSpendingLimitsInterval {
AllTime,
Daily,
Monthly,
PerAuthorization,
Weekly,
Yearly,
Unknown(String),
}Expand description
Interval (or event) to which the amount applies.
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.
AllTime
Daily
Monthly
PerAuthorization
Weekly
Yearly
Unknown(String)
An unrecognized value from Stripe. Should not be used as a request parameter.
Implementations§
Trait Implementations§
Source§impl Clone for CreateIssuingCardSpendingControlsSpendingLimitsInterval
impl Clone for CreateIssuingCardSpendingControlsSpendingLimitsInterval
Source§fn clone(&self) -> CreateIssuingCardSpendingControlsSpendingLimitsInterval
fn clone(&self) -> CreateIssuingCardSpendingControlsSpendingLimitsInterval
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 CreateIssuingCardSpendingControlsSpendingLimitsInterval
Available on non-crate feature redact-generated-debug only.
impl Debug for CreateIssuingCardSpendingControlsSpendingLimitsInterval
Available on non-crate feature
redact-generated-debug only.Source§impl PartialEq for CreateIssuingCardSpendingControlsSpendingLimitsInterval
impl PartialEq for CreateIssuingCardSpendingControlsSpendingLimitsInterval
Source§fn eq(
&self,
other: &CreateIssuingCardSpendingControlsSpendingLimitsInterval,
) -> bool
fn eq( &self, other: &CreateIssuingCardSpendingControlsSpendingLimitsInterval, ) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for CreateIssuingCardSpendingControlsSpendingLimitsInterval
impl StructuralPartialEq for CreateIssuingCardSpendingControlsSpendingLimitsInterval
Auto Trait Implementations§
impl Freeze for CreateIssuingCardSpendingControlsSpendingLimitsInterval
impl RefUnwindSafe for CreateIssuingCardSpendingControlsSpendingLimitsInterval
impl Send for CreateIssuingCardSpendingControlsSpendingLimitsInterval
impl Sync for CreateIssuingCardSpendingControlsSpendingLimitsInterval
impl Unpin for CreateIssuingCardSpendingControlsSpendingLimitsInterval
impl UnsafeUnpin for CreateIssuingCardSpendingControlsSpendingLimitsInterval
impl UnwindSafe for CreateIssuingCardSpendingControlsSpendingLimitsInterval
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