[][src]Enum stripe::PaymentIntentMethodType

pub enum PaymentIntentMethodType {
    Card,
    Ideal,
    SepaDebit,
}

Represents the way a PaymentIntent needs to be fulfilled.

Variants

Card

This PaymentIntent needs to be fulfilled through credit card payment.

Ideal

This PaymentIntent needs to be fulfilled through an iDeal payment.

SepaDebit

This PaymentIntent needs to be fulfilled through a Sepa Direct Debit payment.

Trait Implementations

impl Clone for PaymentIntentMethodType[src]

impl Debug for PaymentIntentMethodType[src]

impl<'de> Deserialize<'de> for PaymentIntentMethodType[src]

impl Eq for PaymentIntentMethodType[src]

impl PartialEq<PaymentIntentMethodType> for PaymentIntentMethodType[src]

impl Serialize for PaymentIntentMethodType[src]

impl StructuralEq for PaymentIntentMethodType[src]

impl StructuralPartialEq for PaymentIntentMethodType[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.