pub enum ResidentKeyRequirement {
Discouraged,
Preferred,
Required,
}Expand description
Resident key requirement for passkey registration.
Specifies whether the authenticator should store the credential locally (resident/discoverable credential) or rely on the server to provide it.
Variants§
Discouraged
The authenticator should not create a resident credential.
Preferred
A resident credential is preferred but not required.
Required
A resident credential must be created.
Trait Implementations§
Source§impl Debug for ResidentKeyRequirement
impl Debug for ResidentKeyRequirement
Auto Trait Implementations§
impl Freeze for ResidentKeyRequirement
impl RefUnwindSafe for ResidentKeyRequirement
impl Send for ResidentKeyRequirement
impl Sync for ResidentKeyRequirement
impl Unpin for ResidentKeyRequirement
impl UnwindSafe for ResidentKeyRequirement
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