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