pub struct CredentialsMetadata {
pub existing_resident_credentials_count: u32,
pub max_possible_remaining_resident_credentials_count: u32,
}Expand description
Response from authenticatorCredentialManagement - getCredsMetadata (0x01)
Returns metadata about credential storage on the authenticator.
Fields§
§existing_resident_credentials_count: u32Number of existing discoverable credentials on the authenticator
max_possible_remaining_resident_credentials_count: u32Maximum number of additional discoverable credentials that can be created
Note: This is an estimate. Actual space depends on algorithm choice, user entity information, etc.
Implementations§
Trait Implementations§
Source§impl Clone for CredentialsMetadata
impl Clone for CredentialsMetadata
Source§fn clone(&self) -> CredentialsMetadata
fn clone(&self) -> CredentialsMetadata
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 CredentialsMetadata
impl Debug for CredentialsMetadata
Source§impl PartialEq for CredentialsMetadata
impl PartialEq for CredentialsMetadata
impl Eq for CredentialsMetadata
impl StructuralPartialEq for CredentialsMetadata
Auto Trait Implementations§
impl Freeze for CredentialsMetadata
impl RefUnwindSafe for CredentialsMetadata
impl Send for CredentialsMetadata
impl Sync for CredentialsMetadata
impl Unpin for CredentialsMetadata
impl UnwindSafe for CredentialsMetadata
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