pub enum SetupIntentStatus {
Canceled,
Processing,
RequiresAction,
RequiresConfirmation,
RequiresPaymentMethod,
Succeeded,
}
Expand description
Status of this SetupIntent, one of requires_payment_method
, requires_confirmation
, requires_action
, processing
, canceled
, or succeeded
.
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for SetupIntentStatus
impl Clone for SetupIntentStatus
Source§fn clone(&self) -> SetupIntentStatus
fn clone(&self) -> SetupIntentStatus
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 SetupIntentStatus
impl Debug for SetupIntentStatus
Source§impl Deserialize for SetupIntentStatus
impl Deserialize for SetupIntentStatus
Source§impl Display for SetupIntentStatus
impl Display for SetupIntentStatus
Source§impl FromStr for SetupIntentStatus
impl FromStr for SetupIntentStatus
Source§type Err = StripeParseError
type Err = StripeParseError
The associated error which can be returned from parsing.
Source§fn from_str(
s: &str,
) -> Result<SetupIntentStatus, <SetupIntentStatus as FromStr>::Err>
fn from_str( s: &str, ) -> Result<SetupIntentStatus, <SetupIntentStatus as FromStr>::Err>
Parses a string
s
to return a value of this type. Read moreSource§impl PartialEq for SetupIntentStatus
impl PartialEq for SetupIntentStatus
impl Copy for SetupIntentStatus
impl Eq for SetupIntentStatus
impl StructuralPartialEq for SetupIntentStatus
Auto Trait Implementations§
impl Freeze for SetupIntentStatus
impl RefUnwindSafe for SetupIntentStatus
impl Send for SetupIntentStatus
impl Sync for SetupIntentStatus
impl Unpin for SetupIntentStatus
impl UnwindSafe for SetupIntentStatus
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