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