pub struct ServiceBiometricStatus {
pub method_name: String,
pub available: bool,
pub enrolled: bool,
pub configured: bool,
}Expand description
Wire DTO for biometric unlock status.
Fields§
§method_name: String§available: bool§enrolled: bool§configured: boolValid on a LOCKED vault too (metadata read — the UI asks this before offering the biometric unlock button).
Trait Implementations§
Source§impl Clone for ServiceBiometricStatus
impl Clone for ServiceBiometricStatus
Source§fn clone(&self) -> ServiceBiometricStatus
fn clone(&self) -> ServiceBiometricStatus
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 ServiceBiometricStatus
impl Debug for ServiceBiometricStatus
Source§impl<'de> Deserialize<'de> for ServiceBiometricStatus
impl<'de> Deserialize<'de> for ServiceBiometricStatus
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 ServiceBiometricStatus
impl RefUnwindSafe for ServiceBiometricStatus
impl Send for ServiceBiometricStatus
impl Sync for ServiceBiometricStatus
impl Unpin for ServiceBiometricStatus
impl UnsafeUnpin for ServiceBiometricStatus
impl UnwindSafe for ServiceBiometricStatus
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