#[non_exhaustive]pub enum SubscriptionScheduleStatus {
Active,
Canceled,
Completed,
NotStarted,
Released,
Unknown(String),
}Expand description
The present status of the subscription schedule.
Possible values are not_started, active, completed, released, and canceled.
You can read more about the different states in our behavior guide.
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.
Active
Canceled
Completed
NotStarted
Released
Unknown(String)
An unrecognized value from Stripe. Should not be used as a request parameter.
Implementations§
Trait Implementations§
Source§impl Clone for SubscriptionScheduleStatus
impl Clone for SubscriptionScheduleStatus
Source§fn clone(&self) -> SubscriptionScheduleStatus
fn clone(&self) -> SubscriptionScheduleStatus
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 SubscriptionScheduleStatus
Available on non-crate feature redact-generated-debug only.
impl Debug for SubscriptionScheduleStatus
Available on non-crate feature
redact-generated-debug only.Source§impl Display for SubscriptionScheduleStatus
impl Display for SubscriptionScheduleStatus
Source§impl FromStr for SubscriptionScheduleStatus
impl FromStr for SubscriptionScheduleStatus
Source§impl FromValueOpt for SubscriptionScheduleStatus
impl FromValueOpt for SubscriptionScheduleStatus
fn from_value(v: Value) -> Option<Self>
Source§impl PartialEq for SubscriptionScheduleStatus
impl PartialEq for SubscriptionScheduleStatus
Source§fn eq(&self, other: &SubscriptionScheduleStatus) -> bool
fn eq(&self, other: &SubscriptionScheduleStatus) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for SubscriptionScheduleStatus
impl StructuralPartialEq for SubscriptionScheduleStatus
Auto Trait Implementations§
impl Freeze for SubscriptionScheduleStatus
impl RefUnwindSafe for SubscriptionScheduleStatus
impl Send for SubscriptionScheduleStatus
impl Sync for SubscriptionScheduleStatus
impl Unpin for SubscriptionScheduleStatus
impl UnsafeUnpin for SubscriptionScheduleStatus
impl UnwindSafe for SubscriptionScheduleStatus
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