pub struct AuthenticatorPrfMakeOutputs {
pub enabled: bool,
pub results: Option<AuthenticatorPrfValues>,
}Expand description
This struct is a more opiniated mirror of webauthn::AuthenticationExtensionsPrfOutputs
specifically for make_credential.
Fields§
§enabled: bool§results: Option<AuthenticatorPrfValues>Trait Implementations§
Source§impl Clone for AuthenticatorPrfMakeOutputs
impl Clone for AuthenticatorPrfMakeOutputs
Source§fn clone(&self) -> AuthenticatorPrfMakeOutputs
fn clone(&self) -> AuthenticatorPrfMakeOutputs
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 AuthenticatorPrfMakeOutputs
impl Debug for AuthenticatorPrfMakeOutputs
Source§impl<'de> Deserialize<'de> for AuthenticatorPrfMakeOutputs
impl<'de> Deserialize<'de> for AuthenticatorPrfMakeOutputs
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
Source§impl From<AuthenticatorPrfMakeOutputs> for AuthenticationExtensionsPrfOutputs
impl From<AuthenticatorPrfMakeOutputs> for AuthenticationExtensionsPrfOutputs
Source§fn from(value: AuthenticatorPrfMakeOutputs) -> Self
fn from(value: AuthenticatorPrfMakeOutputs) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for AuthenticatorPrfMakeOutputs
impl RefUnwindSafe for AuthenticatorPrfMakeOutputs
impl Send for AuthenticatorPrfMakeOutputs
impl Sync for AuthenticatorPrfMakeOutputs
impl Unpin for AuthenticatorPrfMakeOutputs
impl UnwindSafe for AuthenticatorPrfMakeOutputs
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