pub enum AcsAuthMethod {
NoAuthentication,
SmsOtp,
KnowledgeBased,
Oob,
Cvc2,
ThreeDsServerProprietary,
RiskBased,
DigitalToken,
PushNotification,
Biometric,
FidoAssertion,
AppBased,
}Expand description
Authentication method used by the ACS (reported in RReq).
Variants§
NoAuthentication
SmsOtp
KnowledgeBased
Oob
Cvc2
ThreeDsServerProprietary
RiskBased
DigitalToken
PushNotification
Biometric
FidoAssertion
AppBased
Trait Implementations§
Source§impl Clone for AcsAuthMethod
impl Clone for AcsAuthMethod
Source§fn clone(&self) -> AcsAuthMethod
fn clone(&self) -> AcsAuthMethod
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 AcsAuthMethod
impl Debug for AcsAuthMethod
Source§impl<'de> Deserialize<'de> for AcsAuthMethod
impl<'de> Deserialize<'de> for AcsAuthMethod
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 Hash for AcsAuthMethod
impl Hash for AcsAuthMethod
Source§impl PartialEq for AcsAuthMethod
impl PartialEq for AcsAuthMethod
Source§fn eq(&self, other: &AcsAuthMethod) -> bool
fn eq(&self, other: &AcsAuthMethod) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for AcsAuthMethod
impl Serialize for AcsAuthMethod
impl Copy for AcsAuthMethod
impl Eq for AcsAuthMethod
impl StructuralPartialEq for AcsAuthMethod
Auto Trait Implementations§
impl Freeze for AcsAuthMethod
impl RefUnwindSafe for AcsAuthMethod
impl Send for AcsAuthMethod
impl Sync for AcsAuthMethod
impl Unpin for AcsAuthMethod
impl UnsafeUnpin for AcsAuthMethod
impl UnwindSafe for AcsAuthMethod
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