[][src]Enum webauthn_rs::attestation::AttestationType

pub enum AttestationType {
    Basic(CredentialX509PublicKey),
    Self_,
    AttCa,
    ECDAA,
    None(Credential),
    Uncertain(Credential),
}

The type of Attestation that the Authenticator is providing.

Variants

Basic(CredentialX509PublicKey)

The credential is authenticated by a signing X509 Certificate from a vendor or provider.

Self_

Unimplemented

AttCa

Unimplemented

ECDAA

Unimplemented

None(Credential)

No Attestation type was provided with this Credential. If in doubt reject this Credential.

Uncertain(Credential)

Uncertain Attestation was provided with this Credential, which may not be trustworthy in all cases. If in doubt, reject this type.

Trait Implementations

impl Debug for AttestationType[src]

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.