pub enum PaymentIntentCaptureMethod {
Automatic,
Manual,
}Expand description
An enum representing the possible values of an PaymentIntent’s capture_method field.
Variants§
Implementations§
Trait Implementations§
source§impl AsRef<str> for PaymentIntentCaptureMethod
impl AsRef<str> for PaymentIntentCaptureMethod
source§impl Clone for PaymentIntentCaptureMethod
impl Clone for PaymentIntentCaptureMethod
source§fn clone(&self) -> PaymentIntentCaptureMethod
fn clone(&self) -> PaymentIntentCaptureMethod
Returns a copy 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 PaymentIntentCaptureMethod
impl Debug for PaymentIntentCaptureMethod
source§impl Default for PaymentIntentCaptureMethod
impl Default for PaymentIntentCaptureMethod
source§impl<'de> Deserialize<'de> for PaymentIntentCaptureMethod
impl<'de> Deserialize<'de> for PaymentIntentCaptureMethod
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl Display for PaymentIntentCaptureMethod
impl Display for PaymentIntentCaptureMethod
source§impl PartialEq<PaymentIntentCaptureMethod> for PaymentIntentCaptureMethod
impl PartialEq<PaymentIntentCaptureMethod> for PaymentIntentCaptureMethod
source§fn eq(&self, other: &PaymentIntentCaptureMethod) -> bool
fn eq(&self, other: &PaymentIntentCaptureMethod) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl Copy for PaymentIntentCaptureMethod
impl Eq for PaymentIntentCaptureMethod
impl StructuralEq for PaymentIntentCaptureMethod
impl StructuralPartialEq for PaymentIntentCaptureMethod
Auto Trait Implementations§
impl RefUnwindSafe for PaymentIntentCaptureMethod
impl Send for PaymentIntentCaptureMethod
impl Sync for PaymentIntentCaptureMethod
impl Unpin for PaymentIntentCaptureMethod
impl UnwindSafe for PaymentIntentCaptureMethod
Blanket Implementations§
source§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.