pub struct CredentialUpdatedParams {
pub authenticator_id: AuthenticatorId,
pub credential: Credential,
}Expand description
Triggered when a credential is updated, e.g. through PublicKeyCredential.signalCurrentUserDetails(). credentialUpdated
Fields§
§authenticator_id: AuthenticatorId§credential: CredentialTrait Implementations§
Source§impl Clone for CredentialUpdatedParams
impl Clone for CredentialUpdatedParams
Source§fn clone(&self) -> CredentialUpdatedParams
fn clone(&self) -> CredentialUpdatedParams
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 Debug for CredentialUpdatedParams
impl Debug for CredentialUpdatedParams
Source§impl<'de> Deserialize<'de> for CredentialUpdatedParams
impl<'de> Deserialize<'de> for CredentialUpdatedParams
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 PartialEq for CredentialUpdatedParams
impl PartialEq for CredentialUpdatedParams
Source§impl Serialize for CredentialUpdatedParams
impl Serialize for CredentialUpdatedParams
impl StructuralPartialEq for CredentialUpdatedParams
Auto Trait Implementations§
impl Freeze for CredentialUpdatedParams
impl RefUnwindSafe for CredentialUpdatedParams
impl Send for CredentialUpdatedParams
impl Sync for CredentialUpdatedParams
impl Unpin for CredentialUpdatedParams
impl UnsafeUnpin for CredentialUpdatedParams
impl UnwindSafe for CredentialUpdatedParams
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