pub struct RemoveCredentialCommand { /* private fields */ }Available on crate features
experimental and WebAuthn only.Expand description
Removes a credential from the authenticator.
Implementations§
Source§impl RemoveCredentialCommand
impl RemoveCredentialCommand
pub fn new(authenticator_id: AuthenticatorId, credential_id: String) -> Self
pub fn authenticator_id(&self) -> &AuthenticatorId
pub fn credential_id(&self) -> &str
Trait Implementations§
Source§impl Clone for RemoveCredentialCommand
impl Clone for RemoveCredentialCommand
Source§fn clone(&self) -> RemoveCredentialCommand
fn clone(&self) -> RemoveCredentialCommand
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 Command for RemoveCredentialCommand
impl Command for RemoveCredentialCommand
Source§impl Debug for RemoveCredentialCommand
impl Debug for RemoveCredentialCommand
Source§impl<'de> Deserialize<'de> for RemoveCredentialCommand
impl<'de> Deserialize<'de> for RemoveCredentialCommand
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
Auto Trait Implementations§
impl Freeze for RemoveCredentialCommand
impl RefUnwindSafe for RemoveCredentialCommand
impl Send for RemoveCredentialCommand
impl Sync for RemoveCredentialCommand
impl Unpin for RemoveCredentialCommand
impl UnwindSafe for RemoveCredentialCommand
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