pub struct VirtualAuthenticatorOptions { /* private fields */ }Implementations§
Source§impl VirtualAuthenticatorOptions
impl VirtualAuthenticatorOptions
pub fn builder( protocol: AuthenticatorProtocol, transport: AuthenticatorTransport, ) -> VirtualAuthenticatorOptionsBuilder
pub fn protocol(&self) -> &AuthenticatorProtocol
pub fn ctap2Version(&self) -> Option<&Ctap2Version>
pub fn transport(&self) -> &AuthenticatorTransport
pub fn hasResidentKey(&self) -> Option<bool>
pub fn hasUserVerification(&self) -> Option<bool>
pub fn hasLargeBlob(&self) -> Option<bool>
pub fn hasCredBlob(&self) -> Option<bool>
pub fn hasMinPinLength(&self) -> Option<bool>
pub fn hasPrf(&self) -> Option<bool>
pub fn hasHmacSecret(&self) -> Option<bool>
pub fn hasHmacSecretMc(&self) -> Option<bool>
pub fn automaticPresenceSimulation(&self) -> Option<bool>
pub fn isUserVerified(&self) -> Option<bool>
pub fn defaultBackupEligibility(&self) -> Option<bool>
pub fn defaultBackupState(&self) -> Option<bool>
Trait Implementations§
Source§impl Clone for VirtualAuthenticatorOptions
impl Clone for VirtualAuthenticatorOptions
Source§fn clone(&self) -> VirtualAuthenticatorOptions
fn clone(&self) -> VirtualAuthenticatorOptions
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 VirtualAuthenticatorOptions
impl Debug for VirtualAuthenticatorOptions
Source§impl Default for VirtualAuthenticatorOptions
impl Default for VirtualAuthenticatorOptions
Source§fn default() -> VirtualAuthenticatorOptions
fn default() -> VirtualAuthenticatorOptions
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for VirtualAuthenticatorOptions
impl<'de> Deserialize<'de> for VirtualAuthenticatorOptions
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 VirtualAuthenticatorOptions
impl RefUnwindSafe for VirtualAuthenticatorOptions
impl Send for VirtualAuthenticatorOptions
impl Sync for VirtualAuthenticatorOptions
impl Unpin for VirtualAuthenticatorOptions
impl UnsafeUnpin for VirtualAuthenticatorOptions
impl UnwindSafe for VirtualAuthenticatorOptions
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