pub enum ThreeDSecureDetailsAuthenticationFlow {
Challenge,
Frictionless,
}
Expand description
For authenticated transactions: how the customer was authenticated by the issuing bank.
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for ThreeDSecureDetailsAuthenticationFlow
impl Clone for ThreeDSecureDetailsAuthenticationFlow
Source§fn clone(&self) -> ThreeDSecureDetailsAuthenticationFlow
fn clone(&self) -> ThreeDSecureDetailsAuthenticationFlow
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 FromStr for ThreeDSecureDetailsAuthenticationFlow
impl FromStr for ThreeDSecureDetailsAuthenticationFlow
Source§type Err = StripeParseError
type Err = StripeParseError
The associated error which can be returned from parsing.
Source§fn from_str(
s: &str,
) -> Result<ThreeDSecureDetailsAuthenticationFlow, <ThreeDSecureDetailsAuthenticationFlow as FromStr>::Err>
fn from_str( s: &str, ) -> Result<ThreeDSecureDetailsAuthenticationFlow, <ThreeDSecureDetailsAuthenticationFlow as FromStr>::Err>
Parses a string
s
to return a value of this type. Read moreSource§impl PartialEq for ThreeDSecureDetailsAuthenticationFlow
impl PartialEq for ThreeDSecureDetailsAuthenticationFlow
Source§fn eq(&self, other: &ThreeDSecureDetailsAuthenticationFlow) -> bool
fn eq(&self, other: &ThreeDSecureDetailsAuthenticationFlow) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl Copy for ThreeDSecureDetailsAuthenticationFlow
impl Eq for ThreeDSecureDetailsAuthenticationFlow
impl StructuralPartialEq for ThreeDSecureDetailsAuthenticationFlow
Auto Trait Implementations§
impl Freeze for ThreeDSecureDetailsAuthenticationFlow
impl RefUnwindSafe for ThreeDSecureDetailsAuthenticationFlow
impl Send for ThreeDSecureDetailsAuthenticationFlow
impl Sync for ThreeDSecureDetailsAuthenticationFlow
impl Unpin for ThreeDSecureDetailsAuthenticationFlow
impl UnwindSafe for ThreeDSecureDetailsAuthenticationFlow
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