pub struct PasskeyAuthenticatorRegistrationOptionsAuthenticatorSelection {
pub authenticator_attachment: Option<String>,
pub require_resident_key: Option<bool>,
pub resident_key: Option<String>,
pub user_verification: Option<String>,
}Expand description
PasskeyAuthenticatorRegistrationOptionsAuthenticatorSelection
JSON schema
{
"type": "object",
"properties": {
"authenticator_attachment": {
"type": "string"
},
"require_resident_key": {
"type": "boolean"
},
"resident_key": {
"type": "string"
},
"user_verification": {
"type": "string"
}
}
}Fields§
§authenticator_attachment: Option<String>§require_resident_key: Option<bool>§resident_key: Option<String>§user_verification: Option<String>Trait Implementations§
Source§impl Clone for PasskeyAuthenticatorRegistrationOptionsAuthenticatorSelection
impl Clone for PasskeyAuthenticatorRegistrationOptionsAuthenticatorSelection
Source§fn clone(&self) -> PasskeyAuthenticatorRegistrationOptionsAuthenticatorSelection
fn clone(&self) -> PasskeyAuthenticatorRegistrationOptionsAuthenticatorSelection
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<'de> Deserialize<'de> for PasskeyAuthenticatorRegistrationOptionsAuthenticatorSelection
impl<'de> Deserialize<'de> for PasskeyAuthenticatorRegistrationOptionsAuthenticatorSelection
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 From<&PasskeyAuthenticatorRegistrationOptionsAuthenticatorSelection> for PasskeyAuthenticatorRegistrationOptionsAuthenticatorSelection
impl From<&PasskeyAuthenticatorRegistrationOptionsAuthenticatorSelection> for PasskeyAuthenticatorRegistrationOptionsAuthenticatorSelection
Source§fn from(
value: &PasskeyAuthenticatorRegistrationOptionsAuthenticatorSelection,
) -> Self
fn from( value: &PasskeyAuthenticatorRegistrationOptionsAuthenticatorSelection, ) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for PasskeyAuthenticatorRegistrationOptionsAuthenticatorSelection
impl RefUnwindSafe for PasskeyAuthenticatorRegistrationOptionsAuthenticatorSelection
impl Send for PasskeyAuthenticatorRegistrationOptionsAuthenticatorSelection
impl Sync for PasskeyAuthenticatorRegistrationOptionsAuthenticatorSelection
impl Unpin for PasskeyAuthenticatorRegistrationOptionsAuthenticatorSelection
impl UnwindSafe for PasskeyAuthenticatorRegistrationOptionsAuthenticatorSelection
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