pub enum WebAuthnTransport {
Usb,
Nfc,
Ble,
Internal,
Cable,
Hybrid,
Unknown(String),
}Expand description
The transport mechanisms declared for a WebAuthn credential.
Mirrors the identifiers returned by the WebAuthn browser APIs and exposed by the Firebase
JS SDK (packages/auth/src/model/public_types.ts).
Variants§
Usb
Nfc
Ble
Internal
Cable
Hybrid
Unknown(String)
A transport identifier that is not yet known to this SDK.
Implementations§
Trait Implementations§
Source§impl Clone for WebAuthnTransport
impl Clone for WebAuthnTransport
Source§fn clone(&self) -> WebAuthnTransport
fn clone(&self) -> WebAuthnTransport
Returns a duplicate of the value. Read more
1.0.0 · 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 WebAuthnTransport
impl Debug for WebAuthnTransport
Source§impl Display for WebAuthnTransport
impl Display for WebAuthnTransport
Source§impl Hash for WebAuthnTransport
impl Hash for WebAuthnTransport
Source§impl PartialEq for WebAuthnTransport
impl PartialEq for WebAuthnTransport
impl Eq for WebAuthnTransport
impl StructuralPartialEq for WebAuthnTransport
Auto Trait Implementations§
impl Freeze for WebAuthnTransport
impl RefUnwindSafe for WebAuthnTransport
impl Send for WebAuthnTransport
impl Sync for WebAuthnTransport
impl Unpin for WebAuthnTransport
impl UnwindSafe for WebAuthnTransport
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.