pub struct AuthenticatorCapabilities {
pub aaguid: String,
pub manufacturer: Option<String>,
pub model: Option<String>,
pub supports_uv: bool,
pub supports_liveness: bool,
pub biometric_modality: Option<BiometricModality>,
pub certification_level: CertificationLevel,
pub firmware_version: Option<String>,
}Expand description
Authenticator capabilities
Fields§
§aaguid: StringAAGUID (Authenticator Attestation GUID)
manufacturer: Option<String>Manufacturer
model: Option<String>Model
supports_uv: boolSupports user verification
supports_liveness: boolSupports liveness detection
biometric_modality: Option<BiometricModality>Biometric modality
certification_level: CertificationLevelCertification level
firmware_version: Option<String>Firmware version
Implementations§
Trait Implementations§
Source§impl Clone for AuthenticatorCapabilities
impl Clone for AuthenticatorCapabilities
Source§fn clone(&self) -> AuthenticatorCapabilities
fn clone(&self) -> AuthenticatorCapabilities
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 AuthenticatorCapabilities
impl Debug for AuthenticatorCapabilities
Source§impl<'de> Deserialize<'de> for AuthenticatorCapabilities
impl<'de> Deserialize<'de> for AuthenticatorCapabilities
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 AuthenticatorCapabilities
impl RefUnwindSafe for AuthenticatorCapabilities
impl Send for AuthenticatorCapabilities
impl Sync for AuthenticatorCapabilities
impl Unpin for AuthenticatorCapabilities
impl UnsafeUnpin for AuthenticatorCapabilities
impl UnwindSafe for AuthenticatorCapabilities
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