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§
Source§impl Clone for AuthenticatorAttachment
impl Clone for AuthenticatorAttachment
Source§fn clone(&self) -> AuthenticatorAttachment
fn clone(&self) -> AuthenticatorAttachment
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for AuthenticatorAttachment
impl Debug for AuthenticatorAttachment
Source§impl<'de> Deserialize<'de> for AuthenticatorAttachment
impl<'de> Deserialize<'de> for AuthenticatorAttachment
Source§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
Source§impl PartialEq for AuthenticatorAttachment
impl PartialEq for AuthenticatorAttachment
Source§fn eq(&self, other: &AuthenticatorAttachment) -> bool
fn eq(&self, other: &AuthenticatorAttachment) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.Source§impl Serialize for AuthenticatorAttachment
impl Serialize for AuthenticatorAttachment
Source§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 StructuralPartialEq for AuthenticatorAttachment
Auto Trait Implementations§
impl Freeze for AuthenticatorAttachment
impl RefUnwindSafe for AuthenticatorAttachment
impl Send for AuthenticatorAttachment
impl Sync for AuthenticatorAttachment
impl Unpin for AuthenticatorAttachment
impl UnwindSafe for AuthenticatorAttachment
Blanket Implementations§
Source§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
Source§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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