Struct chrome_remote_interface_model::web_authn::SetAutomaticPresenceSimulationCommand[][src]

pub struct SetAutomaticPresenceSimulationCommand { /* fields omitted */ }

Sets whether tests of user presence will succeed immediately (if true) or fail to resolve (if false) for an authenticator. The default is true.

Implementations

impl SetAutomaticPresenceSimulationCommand[src]

pub fn new(authenticator_id: AuthenticatorId, enabled: bool) -> Self[src]

pub fn authenticator_id(&self) -> &AuthenticatorId[src]

pub fn enabled(&self) -> bool[src]

Trait Implementations

impl Clone for SetAutomaticPresenceSimulationCommand[src]

impl Command for SetAutomaticPresenceSimulationCommand[src]

type Return = SetAutomaticPresenceSimulationReturn

Return type.

impl Debug for SetAutomaticPresenceSimulationCommand[src]

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

impl Serialize for SetAutomaticPresenceSimulationCommand[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.