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