Struct webauthn_rs::prelude::PublicKeyCredential
[−]pub struct PublicKeyCredential {
pub id: String,
pub raw_id: Base64UrlSafeData,
pub response: AuthenticatorAssertionResponseRaw,
pub extensions: AuthenticationExtensionsClientOutputs,
pub type_: String,
}Expand description
A client response to an authentication challenge. This contains all required information to asses and assert trust in a credentials legitimacy, followed by authentication 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.
Fields
id: StringThe credential Id, likely base64
raw_id: Base64UrlSafeDataThe binary of the credential id.
response: AuthenticatorAssertionResponseRawThe authenticator response.
extensions: AuthenticationExtensionsClientOutputsUnsigned Client processed extensions.
type_: StringThe authenticator type.
Implementations
impl PublicKeyCredential
impl PublicKeyCredential
pub fn get_user_unique_id(&self) -> Option<&[u8]>
pub fn get_user_unique_id(&self) -> Option<&[u8]>
Retrieve the user uniqueid that may have been provided by the authenticator during this authentication.
Trait Implementations
impl Clone for PublicKeyCredential
impl Clone for PublicKeyCredential
fn clone(&self) -> PublicKeyCredential
fn clone(&self) -> PublicKeyCredential
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 PublicKeyCredential
impl Debug for PublicKeyCredential
impl<'de> Deserialize<'de> for PublicKeyCredential
impl<'de> Deserialize<'de> for PublicKeyCredential
fn deserialize<__D>(
__deserializer: __D
) -> Result<PublicKeyCredential, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D
) -> Result<PublicKeyCredential, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Serialize for PublicKeyCredential
impl Serialize for PublicKeyCredential
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
Auto Trait Implementations
impl RefUnwindSafe for PublicKeyCredential
impl Send for PublicKeyCredential
impl Sync for PublicKeyCredential
impl Unpin for PublicKeyCredential
impl UnwindSafe for PublicKeyCredential
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