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