pub struct AuthenticationExtensionsClientOutputs {
pub cred_props: Option<CredentialPropertiesOutput>,
pub prf: Option<AuthenticationExtensionsPrfOutputs>,
}Expand description
This is a dictionary containing the client extension output values for zero or more WebAuthn Extensions.
https://w3c.github.io/webauthn/#dictdef-authenticationextensionsclientoutputs
Fields§
§cred_props: Option<CredentialPropertiesOutput>Contains properties of the given PublicKeyCredential when it is included.
See CredentialPropertiesOutput for more information
prf: Option<AuthenticationExtensionsPrfOutputs>Contains the results of evaluating the PRF.
See AuthenticationExtensionsPrfOutputs for more information.
Trait Implementations§
Source§impl Default for AuthenticationExtensionsClientOutputs
impl Default for AuthenticationExtensionsClientOutputs
Source§fn default() -> AuthenticationExtensionsClientOutputs
fn default() -> AuthenticationExtensionsClientOutputs
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AuthenticationExtensionsClientOutputs
impl<'de> Deserialize<'de> for AuthenticationExtensionsClientOutputs
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for AuthenticationExtensionsClientOutputs
impl RefUnwindSafe for AuthenticationExtensionsClientOutputs
impl Send for AuthenticationExtensionsClientOutputs
impl Sync for AuthenticationExtensionsClientOutputs
impl Unpin for AuthenticationExtensionsClientOutputs
impl UnwindSafe for AuthenticationExtensionsClientOutputs
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