pub struct GetCredentials {
pub method: GetCredentialsMethod,
pub params: GetCredentialsParams,
}Expand description
Returns all the credentials stored in the given virtual authenticator. getCredentials
Fields§
§method: GetCredentialsMethod§params: GetCredentialsParamsImplementations§
Source§impl GetCredentials
impl GetCredentials
pub fn builder() -> GetCredentialsBuilder
Source§impl GetCredentials
impl GetCredentials
pub const IDENTIFIER: &'static str = "WebAuthn.getCredentials"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for GetCredentials
impl Clone for GetCredentials
Source§fn clone(&self) -> GetCredentials
fn clone(&self) -> GetCredentials
Returns a duplicate 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 CommandResult for GetCredentials
impl CommandResult for GetCredentials
type Result = GetCredentialsResult
fn result_from_value(result: Value) -> Result<Self::Result>
Source§impl Debug for GetCredentials
impl Debug for GetCredentials
Source§impl<'de> Deserialize<'de> for GetCredentials
impl<'de> Deserialize<'de> for GetCredentials
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 From<GetCredentials> for BrowserProtocolCommands
impl From<GetCredentials> for BrowserProtocolCommands
Source§fn from(v: GetCredentials) -> Self
fn from(v: GetCredentials) -> Self
Converts to this type from the input type.
Source§impl From<GetCredentials> for Command
impl From<GetCredentials> for Command
Source§fn from(v: GetCredentials) -> Self
fn from(v: GetCredentials) -> Self
Converts to this type from the input type.
Source§impl From<GetCredentials> for WebAuthnCommands
impl From<GetCredentials> for WebAuthnCommands
Source§fn from(v: GetCredentials) -> Self
fn from(v: GetCredentials) -> Self
Converts to this type from the input type.
Source§impl PartialEq for GetCredentials
impl PartialEq for GetCredentials
Source§impl Serialize for GetCredentials
impl Serialize for GetCredentials
Source§impl TryFrom<BrowserProtocolCommands> for GetCredentials
impl TryFrom<BrowserProtocolCommands> for GetCredentials
Source§type Error = BrowserProtocolCommands
type Error = BrowserProtocolCommands
The type returned in the event of a conversion error.
Source§fn try_from(
e: BrowserProtocolCommands,
) -> Result<Self, <GetCredentials as TryFrom<BrowserProtocolCommands>>::Error>
fn try_from( e: BrowserProtocolCommands, ) -> Result<Self, <GetCredentials as TryFrom<BrowserProtocolCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<Command> for GetCredentials
impl TryFrom<Command> for GetCredentials
Source§impl TryFrom<WebAuthnCommands> for GetCredentials
impl TryFrom<WebAuthnCommands> for GetCredentials
Source§type Error = WebAuthnCommands
type Error = WebAuthnCommands
The type returned in the event of a conversion error.
Source§fn try_from(
e: WebAuthnCommands,
) -> Result<Self, <GetCredentials as TryFrom<WebAuthnCommands>>::Error>
fn try_from( e: WebAuthnCommands, ) -> Result<Self, <GetCredentials as TryFrom<WebAuthnCommands>>::Error>
Performs the conversion.
impl StructuralPartialEq for GetCredentials
Auto Trait Implementations§
impl Freeze for GetCredentials
impl RefUnwindSafe for GetCredentials
impl Send for GetCredentials
impl Sync for GetCredentials
impl Unpin for GetCredentials
impl UnsafeUnpin for GetCredentials
impl UnwindSafe for GetCredentials
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