[][src]Struct webauthn_rs::proto::RegisterPublicKeyCredential

pub struct RegisterPublicKeyCredential {
    pub response: AuthenticatorAttestationResponseRaw,
    // some fields omitted
}

A client response to a registration challenge. This contains all required information to asses and assert trust in a credentials legitimacy, followed by registration to a user.

You should not need to handle the inner content of this structure - you should provide this to the correctly handling function of Webauthn only. https://w3c.github.io/webauthn/#iface-pkcredential

Fields

response: AuthenticatorAttestationResponseRaw

https://w3c.github.io/webauthn/#dom-publickeycredential-response

Trait Implementations

impl Debug for RegisterPublicKeyCredential[src]

impl<'de> Deserialize<'de> for RegisterPublicKeyCredential[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

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

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.