pub enum AuthenticationType {
Frictionless,
ChallengeOtp,
ChallengeOob,
ChallengeRba,
ChallengeAcsDecision,
}Expand description
Type of authentication performed by the ACS (reported in RReq).
Variants§
Trait Implementations§
Source§impl Clone for AuthenticationType
impl Clone for AuthenticationType
Source§fn clone(&self) -> AuthenticationType
fn clone(&self) -> AuthenticationType
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 AuthenticationType
impl Debug for AuthenticationType
Source§impl<'de> Deserialize<'de> for AuthenticationType
impl<'de> Deserialize<'de> for AuthenticationType
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 AuthenticationType
impl Hash for AuthenticationType
Source§impl PartialEq for AuthenticationType
impl PartialEq for AuthenticationType
Source§fn eq(&self, other: &AuthenticationType) -> bool
fn eq(&self, other: &AuthenticationType) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for AuthenticationType
impl Serialize for AuthenticationType
impl Copy for AuthenticationType
impl Eq for AuthenticationType
impl StructuralPartialEq for AuthenticationType
Auto Trait Implementations§
impl Freeze for AuthenticationType
impl RefUnwindSafe for AuthenticationType
impl Send for AuthenticationType
impl Sync for AuthenticationType
impl Unpin for AuthenticationType
impl UnsafeUnpin for AuthenticationType
impl UnwindSafe for AuthenticationType
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