pub struct GetCredentialParams {
pub authenticator_id: AuthenticatorId,
pub credential_id: Binary,
}
Expand description
Returns a single credential stored in the given virtual authenticator that matches the credential ID. getCredential
Fields§
§authenticator_id: AuthenticatorId
§credential_id: Binary
Implementations§
source§impl GetCredentialParams
impl GetCredentialParams
pub fn builder() -> GetCredentialParamsBuilder
source§impl GetCredentialParams
impl GetCredentialParams
pub const IDENTIFIER: &'static str = "WebAuthn.getCredential"
Trait Implementations§
source§impl Clone for GetCredentialParams
impl Clone for GetCredentialParams
source§fn clone(&self) -> GetCredentialParams
fn clone(&self) -> GetCredentialParams
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Command for GetCredentialParams
impl Command for GetCredentialParams
§type Response = GetCredentialReturns
type Response = GetCredentialReturns
The type of the response this request triggers on the chromium server
source§impl Debug for GetCredentialParams
impl Debug for GetCredentialParams
source§impl<'de> Deserialize<'de> for GetCredentialParams
impl<'de> Deserialize<'de> for GetCredentialParams
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
source§impl Method for GetCredentialParams
impl Method for GetCredentialParams
source§fn identifier(&self) -> MethodId
fn identifier(&self) -> MethodId
The whole string identifier for this method like:
DOM.removeNode
source§fn domain_name(&self) -> Cow<'static, str>
fn domain_name(&self) -> Cow<'static, str>
The name of the domain this method belongs to:
DOM
source§fn method_name(&self) -> Cow<'static, str>
fn method_name(&self) -> Cow<'static, str>
The standalone identifier of the method inside the domain:
removeNode
source§impl MethodType for GetCredentialParams
impl MethodType for GetCredentialParams
source§impl PartialEq<GetCredentialParams> for GetCredentialParams
impl PartialEq<GetCredentialParams> for GetCredentialParams
source§fn eq(&self, other: &GetCredentialParams) -> bool
fn eq(&self, other: &GetCredentialParams) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.