pub enum AuthenticatorAttachment {
Platform,
CrossPlatform,
}Expand description
The authenticator attachment hint. This is NOT enforced, and is only used to help a user select a relevant authenticator type.
Variants
Platform
Request a device that is part of the machine aka inseperable. https://www.w3.org/TR/webauthn/#attachment
CrossPlatform
Request a device that can be seperated from the machine aka an external token. https://www.w3.org/TR/webauthn/#attachment
Trait Implementations
impl Clone for AuthenticatorAttachment
impl Clone for AuthenticatorAttachment
fn clone(&self) -> AuthenticatorAttachment
fn clone(&self) -> AuthenticatorAttachment
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Debug for AuthenticatorAttachment
impl Debug for AuthenticatorAttachment
impl<'de> Deserialize<'de> for AuthenticatorAttachment
impl<'de> Deserialize<'de> for AuthenticatorAttachment
fn deserialize<__D>(
__deserializer: __D
) -> Result<AuthenticatorAttachment, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D
) -> Result<AuthenticatorAttachment, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl PartialEq<AuthenticatorAttachment> for AuthenticatorAttachment
impl PartialEq<AuthenticatorAttachment> for AuthenticatorAttachment
fn eq(&self, other: &AuthenticatorAttachment) -> bool
fn eq(&self, other: &AuthenticatorAttachment) -> bool
impl Serialize for AuthenticatorAttachment
impl Serialize for AuthenticatorAttachment
fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl Copy for AuthenticatorAttachment
impl Eq for AuthenticatorAttachment
impl StructuralEq for AuthenticatorAttachment
impl StructuralPartialEq for AuthenticatorAttachment
Auto Trait Implementations
impl RefUnwindSafe for AuthenticatorAttachment
impl Send for AuthenticatorAttachment
impl Sync for AuthenticatorAttachment
impl Unpin for AuthenticatorAttachment
impl UnwindSafe for AuthenticatorAttachment
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more