pub enum PaymentMethodVerificationStatus {
Success,
Failure,
Pending,
}Expand description
Indicates the payment method has been verified.
E.g. if you request payment method verification from a payment processor and receive a failure
set the value to PaymentMethodVerificationStatus::Failure.
Variants§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for PaymentMethodVerificationStatus
impl<'de> Deserialize<'de> for PaymentMethodVerificationStatus
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
Auto Trait Implementations§
impl Freeze for PaymentMethodVerificationStatus
impl RefUnwindSafe for PaymentMethodVerificationStatus
impl Send for PaymentMethodVerificationStatus
impl Sync for PaymentMethodVerificationStatus
impl Unpin for PaymentMethodVerificationStatus
impl UnwindSafe for PaymentMethodVerificationStatus
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