pub struct AuthenticatorPrfValues {
pub first: [u8; 32],
pub second: Option<[u8; 32]>,
}Expand description
This struct is a more opiniated mirror of webauthn::AuthenticationExtensionsPrfValues.
Fields§
§first: [u8; 32]This is the already hashed values of webauthn::AuthenticationExtensionsPrfValues::first.
second: Option<[u8; 32]>This is the already hashed values of webauthn::AuthenticationExtensionsPrfValues::second.
Trait Implementations§
Source§impl Clone for AuthenticatorPrfValues
impl Clone for AuthenticatorPrfValues
Source§fn clone(&self) -> AuthenticatorPrfValues
fn clone(&self) -> AuthenticatorPrfValues
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 AuthenticatorPrfValues
impl Debug for AuthenticatorPrfValues
Source§impl<'de> Deserialize<'de> for AuthenticatorPrfValues
impl<'de> Deserialize<'de> for AuthenticatorPrfValues
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<AuthenticatorPrfValues> for AuthenticationExtensionsPrfValues
impl From<AuthenticatorPrfValues> for AuthenticationExtensionsPrfValues
Source§fn from(value: AuthenticatorPrfValues) -> Self
fn from(value: AuthenticatorPrfValues) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for AuthenticatorPrfValues
impl RefUnwindSafe for AuthenticatorPrfValues
impl Send for AuthenticatorPrfValues
impl Sync for AuthenticatorPrfValues
impl Unpin for AuthenticatorPrfValues
impl UnwindSafe for AuthenticatorPrfValues
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