pub struct AuthenticatorSelection {
pub authenticator_attachment: Option<AuthenticatorAttachment>,
pub require_resident_key: Option<bool>,
pub user_verification: Option<UserVerificationRequirement>,
}
Fields§
§authenticator_attachment: Option<AuthenticatorAttachment>
§require_resident_key: Option<bool>
§user_verification: Option<UserVerificationRequirement>
Implementations§
Source§impl AuthenticatorSelection
impl AuthenticatorSelection
pub fn new() -> AuthenticatorSelection
Trait Implementations§
Source§impl Clone for AuthenticatorSelection
impl Clone for AuthenticatorSelection
Source§fn clone(&self) -> AuthenticatorSelection
fn clone(&self) -> AuthenticatorSelection
Returns a copy 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 AuthenticatorSelection
impl Debug for AuthenticatorSelection
Source§impl Default for AuthenticatorSelection
impl Default for AuthenticatorSelection
Source§fn default() -> AuthenticatorSelection
fn default() -> AuthenticatorSelection
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AuthenticatorSelection
impl<'de> Deserialize<'de> for AuthenticatorSelection
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 AuthenticatorSelection
impl PartialEq for AuthenticatorSelection
Source§impl Serialize for AuthenticatorSelection
impl Serialize for AuthenticatorSelection
impl StructuralPartialEq for AuthenticatorSelection
Auto Trait Implementations§
impl Freeze for AuthenticatorSelection
impl RefUnwindSafe for AuthenticatorSelection
impl Send for AuthenticatorSelection
impl Sync for AuthenticatorSelection
impl Unpin for AuthenticatorSelection
impl UnwindSafe for AuthenticatorSelection
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