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§impl FromValueOpt for SetupIntentStatus
impl FromValueOpt for SetupIntentStatus
fn from_value(v: Value) -> Option<Self>
Source§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