pub struct ClearCredentials {
pub method: ClearCredentialsMethod,
pub params: ClearCredentialsParams,
}Expand description
Clears all the credentials from the specified device. clearCredentials
Fields§
§method: ClearCredentialsMethod§params: ClearCredentialsParamsImplementations§
Source§impl ClearCredentials
impl ClearCredentials
pub fn builder() -> ClearCredentialsBuilder
Source§impl ClearCredentials
impl ClearCredentials
pub const IDENTIFIER: &'static str = "WebAuthn.clearCredentials"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for ClearCredentials
impl Clone for ClearCredentials
Source§fn clone(&self) -> ClearCredentials
fn clone(&self) -> ClearCredentials
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 ClearCredentials
impl CommandResult for ClearCredentials
type Result = ClearCredentialsResult
fn result_from_value(result: Value) -> Result<Self::Result>
Source§impl Debug for ClearCredentials
impl Debug for ClearCredentials
Source§impl<'de> Deserialize<'de> for ClearCredentials
impl<'de> Deserialize<'de> for ClearCredentials
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<ClearCredentials> for BrowserProtocolCommands
impl From<ClearCredentials> for BrowserProtocolCommands
Source§fn from(v: ClearCredentials) -> Self
fn from(v: ClearCredentials) -> Self
Converts to this type from the input type.
Source§impl From<ClearCredentials> for Command
impl From<ClearCredentials> for Command
Source§fn from(v: ClearCredentials) -> Self
fn from(v: ClearCredentials) -> Self
Converts to this type from the input type.
Source§impl From<ClearCredentials> for WebAuthnCommands
impl From<ClearCredentials> for WebAuthnCommands
Source§fn from(v: ClearCredentials) -> Self
fn from(v: ClearCredentials) -> Self
Converts to this type from the input type.
Source§impl PartialEq for ClearCredentials
impl PartialEq for ClearCredentials
Source§impl Serialize for ClearCredentials
impl Serialize for ClearCredentials
Source§impl TryFrom<BrowserProtocolCommands> for ClearCredentials
impl TryFrom<BrowserProtocolCommands> for ClearCredentials
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, <ClearCredentials as TryFrom<BrowserProtocolCommands>>::Error>
fn try_from( e: BrowserProtocolCommands, ) -> Result<Self, <ClearCredentials as TryFrom<BrowserProtocolCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<Command> for ClearCredentials
impl TryFrom<Command> for ClearCredentials
Source§impl TryFrom<WebAuthnCommands> for ClearCredentials
impl TryFrom<WebAuthnCommands> for ClearCredentials
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, <ClearCredentials as TryFrom<WebAuthnCommands>>::Error>
fn try_from( e: WebAuthnCommands, ) -> Result<Self, <ClearCredentials as TryFrom<WebAuthnCommands>>::Error>
Performs the conversion.
impl StructuralPartialEq for ClearCredentials
Auto Trait Implementations§
impl Freeze for ClearCredentials
impl RefUnwindSafe for ClearCredentials
impl Send for ClearCredentials
impl Sync for ClearCredentials
impl Unpin for ClearCredentials
impl UnsafeUnpin for ClearCredentials
impl UnwindSafe for ClearCredentials
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