#[non_exhaustive]pub enum CancellationDetailsFeedback {
CustomerService,
LowQuality,
MissingFeatures,
Other,
SwitchedService,
TooComplex,
TooExpensive,
Unused,
Unknown(String),
}Expand description
The customer submitted reason for why they canceled, if the subscription was canceled explicitly by the user.
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.
CustomerService
LowQuality
MissingFeatures
Other
SwitchedService
TooComplex
TooExpensive
Unused
Unknown(String)
An unrecognized value from Stripe. Should not be used as a request parameter.
Implementations§
Trait Implementations§
Source§impl Clone for CancellationDetailsFeedback
impl Clone for CancellationDetailsFeedback
Source§fn clone(&self) -> CancellationDetailsFeedback
fn clone(&self) -> CancellationDetailsFeedback
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 CancellationDetailsFeedback
impl Debug for CancellationDetailsFeedback
Source§impl FromValueOpt for CancellationDetailsFeedback
impl FromValueOpt for CancellationDetailsFeedback
fn from_value(v: Value) -> Option<Self>
impl Eq for CancellationDetailsFeedback
impl StructuralPartialEq for CancellationDetailsFeedback
Auto Trait Implementations§
impl Freeze for CancellationDetailsFeedback
impl RefUnwindSafe for CancellationDetailsFeedback
impl Send for CancellationDetailsFeedback
impl Sync for CancellationDetailsFeedback
impl Unpin for CancellationDetailsFeedback
impl UnwindSafe for CancellationDetailsFeedback
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