Struct chrome_remote_interface_model::web_authn::AddVirtualAuthenticatorCommand[][src]

pub struct AddVirtualAuthenticatorCommand { /* fields omitted */ }

Creates and adds a virtual authenticator.

Implementations

impl AddVirtualAuthenticatorCommand[src]

Methods from Deref<Target = VirtualAuthenticatorOptions>

pub fn protocol(&self) -> &AuthenticatorProtocol[src]

pub fn ctap2_version(&self) -> Option<&Ctap2Version>[src]

Defaults to ctap2_0. Ignored if |protocol| == u2f.

pub fn transport(&self) -> &AuthenticatorTransport[src]

pub fn has_resident_key(&self) -> Option<&bool>[src]

Defaults to false.

pub fn has_user_verification(&self) -> Option<&bool>[src]

Defaults to false.

pub fn has_large_blob(&self) -> Option<&bool>[src]

If set to true, the authenticator will support the largeBlob extension. https://w3c.github.io/webauthn#largeBlob Defaults to false.

pub fn automatic_presence_simulation(&self) -> Option<&bool>[src]

If set to true, tests of user presence will succeed immediately. Otherwise, they will not be resolved. Defaults to true.

pub fn is_user_verified(&self) -> Option<&bool>[src]

Sets whether User Verification succeeds or fails for an authenticator. Defaults to false.

Trait Implementations

impl Clone for AddVirtualAuthenticatorCommand[src]

impl Command for AddVirtualAuthenticatorCommand[src]

type Return = AddVirtualAuthenticatorReturn

Return type.

impl Debug for AddVirtualAuthenticatorCommand[src]

impl Deref for AddVirtualAuthenticatorCommand[src]

type Target = VirtualAuthenticatorOptions

The resulting type after dereferencing.

impl<'de> Deserialize<'de> for AddVirtualAuthenticatorCommand[src]

impl Serialize for AddVirtualAuthenticatorCommand[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.