pub enum SetupIntentCancellationReason {
Abandoned,
Duplicate,
RequestedByCustomer,
}
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for SetupIntentCancellationReason
impl Clone for SetupIntentCancellationReason
Source§fn clone(&self) -> SetupIntentCancellationReason
fn clone(&self) -> SetupIntentCancellationReason
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 FromStr for SetupIntentCancellationReason
impl FromStr for SetupIntentCancellationReason
Source§type Err = StripeParseError
type Err = StripeParseError
The associated error which can be returned from parsing.
Source§fn from_str(
s: &str,
) -> Result<SetupIntentCancellationReason, <SetupIntentCancellationReason as FromStr>::Err>
fn from_str( s: &str, ) -> Result<SetupIntentCancellationReason, <SetupIntentCancellationReason as FromStr>::Err>
Parses a string
s
to return a value of this type. Read moreSource§impl PartialEq for SetupIntentCancellationReason
impl PartialEq for SetupIntentCancellationReason
Source§fn eq(&self, other: &SetupIntentCancellationReason) -> bool
fn eq(&self, other: &SetupIntentCancellationReason) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.Source§impl Serialize for SetupIntentCancellationReason
impl Serialize for SetupIntentCancellationReason
Source§fn serialize<S>(
&self,
serializer: S,
) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>where
S: Serializer,
fn serialize<S>(
&self,
serializer: S,
) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>where
S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl Copy for SetupIntentCancellationReason
impl Eq for SetupIntentCancellationReason
impl StructuralPartialEq for SetupIntentCancellationReason
Auto Trait Implementations§
impl Freeze for SetupIntentCancellationReason
impl RefUnwindSafe for SetupIntentCancellationReason
impl Send for SetupIntentCancellationReason
impl Sync for SetupIntentCancellationReason
impl Unpin for SetupIntentCancellationReason
impl UnwindSafe for SetupIntentCancellationReason
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