pub struct WebAuthnSpec {
pub rp_id: String,
pub challenge: Vec<u8>,
pub credential_id: Vec<u8>,
pub authenticator_model: String,
pub attestation_mode: AttestationMode,
}Fields§
§rp_id: String§challenge: Vec<u8>§credential_id: Vec<u8>§authenticator_model: String§attestation_mode: AttestationModeImplementations§
Trait Implementations§
Source§impl Clone for WebAuthnSpec
impl Clone for WebAuthnSpec
Source§fn clone(&self) -> WebAuthnSpec
fn clone(&self) -> WebAuthnSpec
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 WebAuthnSpec
impl Debug for WebAuthnSpec
Source§impl PartialEq for WebAuthnSpec
impl PartialEq for WebAuthnSpec
Source§fn eq(&self, other: &WebAuthnSpec) -> bool
fn eq(&self, other: &WebAuthnSpec) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for WebAuthnSpec
impl StructuralPartialEq for WebAuthnSpec
Auto Trait Implementations§
impl Freeze for WebAuthnSpec
impl RefUnwindSafe for WebAuthnSpec
impl Send for WebAuthnSpec
impl Sync for WebAuthnSpec
impl Unpin for WebAuthnSpec
impl UnsafeUnpin for WebAuthnSpec
impl UnwindSafe for WebAuthnSpec
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