Struct chrome_remote_interface_model::web_authn::GetCredentialCommand[][src]

pub struct GetCredentialCommand { /* fields omitted */ }
This is supported on crate features experimental and WebAuthn only.

Returns a single credential stored in the given virtual authenticator that matches the credential ID.

Implementations

impl GetCredentialCommand[src]

pub fn new(authenticator_id: AuthenticatorId, credential_id: String) -> Self[src]

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

pub fn credential_id(&self) -> &str[src]

Trait Implementations

impl Clone for GetCredentialCommand[src]

impl Command for GetCredentialCommand[src]

type Return = GetCredentialReturn

Return type.

impl Debug for GetCredentialCommand[src]

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

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