pub enum ThreeDsMethod {
NotAvailableOrNotUsed,
Successful,
Failed,
}Expand description
How the 3DS Method was used to collect device fingerprint data.
Variants§
NotAvailableOrNotUsed
00 — 3DS Method Not Available / Requestor chose not to use
Successful
01 — 3DS Method URL was present and successfully invoked
Failed
02 — 3DS Method URL was present but failed or timed out
Trait Implementations§
Source§impl Clone for ThreeDsMethod
impl Clone for ThreeDsMethod
Source§fn clone(&self) -> ThreeDsMethod
fn clone(&self) -> ThreeDsMethod
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 ThreeDsMethod
impl Debug for ThreeDsMethod
Source§impl<'de> Deserialize<'de> for ThreeDsMethod
impl<'de> Deserialize<'de> for ThreeDsMethod
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 ThreeDsMethod
impl Hash for ThreeDsMethod
Source§impl PartialEq for ThreeDsMethod
impl PartialEq for ThreeDsMethod
Source§fn eq(&self, other: &ThreeDsMethod) -> bool
fn eq(&self, other: &ThreeDsMethod) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ThreeDsMethod
impl Serialize for ThreeDsMethod
impl Copy for ThreeDsMethod
impl Eq for ThreeDsMethod
impl StructuralPartialEq for ThreeDsMethod
Auto Trait Implementations§
impl Freeze for ThreeDsMethod
impl RefUnwindSafe for ThreeDsMethod
impl Send for ThreeDsMethod
impl Sync for ThreeDsMethod
impl Unpin for ThreeDsMethod
impl UnsafeUnpin for ThreeDsMethod
impl UnwindSafe for ThreeDsMethod
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