#[non_exhaustive]pub enum SubscriptionOnResume {
ContinueExistingBillingPeriod,
StartNewBillingPeriod,
}
Expand description
How Paddle should set the billing period for the subscription when resuming. If omitted, defaults to start_new_billing_period
.
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.
ContinueExistingBillingPeriod
When resuming, continue the existing billing period. If the customer resumes before the end date of the existing billing period, there’s no immediate charge. If after, an error is returned.
StartNewBillingPeriod
When resuming, start a new billing period. The current_billing_period.starts_at
date is set to the resume date, and Paddle immediately charges the full amount for the new billing period.
Trait Implementations§
Source§impl Clone for SubscriptionOnResume
impl Clone for SubscriptionOnResume
Source§fn clone(&self) -> SubscriptionOnResume
fn clone(&self) -> SubscriptionOnResume
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 SubscriptionOnResume
impl Debug for SubscriptionOnResume
Source§impl<'de> Deserialize<'de> for SubscriptionOnResume
impl<'de> Deserialize<'de> for SubscriptionOnResume
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Hash for SubscriptionOnResume
impl Hash for SubscriptionOnResume
Source§impl Ord for SubscriptionOnResume
impl Ord for SubscriptionOnResume
Source§fn cmp(&self, other: &SubscriptionOnResume) -> Ordering
fn cmp(&self, other: &SubscriptionOnResume) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for SubscriptionOnResume
impl PartialEq for SubscriptionOnResume
Source§impl PartialOrd for SubscriptionOnResume
impl PartialOrd for SubscriptionOnResume
Source§impl Serialize for SubscriptionOnResume
impl Serialize for SubscriptionOnResume
impl Eq for SubscriptionOnResume
impl StructuralPartialEq for SubscriptionOnResume
Auto Trait Implementations§
impl Freeze for SubscriptionOnResume
impl RefUnwindSafe for SubscriptionOnResume
impl Send for SubscriptionOnResume
impl Sync for SubscriptionOnResume
impl Unpin for SubscriptionOnResume
impl UnwindSafe for SubscriptionOnResume
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.