pub struct StoredHmacSecret {
pub cred_with_uv: Vec<u8>,
pub cred_without_uv: Option<Vec<u8>>,
}Expand description
The stored hmac-secret credentials associated to a Passkey
Fields§
§cred_with_uv: Vec<u8>The credential that must be gated behind user verification
cred_without_uv: Option<Vec<u8>>The credential that is not gated behind user verification, but is gated behind user presence
Trait Implementations§
Source§impl Clone for StoredHmacSecret
impl Clone for StoredHmacSecret
Source§fn clone(&self) -> StoredHmacSecret
fn clone(&self) -> StoredHmacSecret
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 StoredHmacSecret
impl Debug for StoredHmacSecret
Source§impl Drop for StoredHmacSecret
impl Drop for StoredHmacSecret
Auto Trait Implementations§
impl Freeze for StoredHmacSecret
impl RefUnwindSafe for StoredHmacSecret
impl Send for StoredHmacSecret
impl Sync for StoredHmacSecret
impl Unpin for StoredHmacSecret
impl UnwindSafe for StoredHmacSecret
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