Struct fusionauth_rust_client::models::web_authn_authenticator_authentication_response::WebAuthnAuthenticatorAuthenticationResponse
source · pub struct WebAuthnAuthenticatorAuthenticationResponse {
pub authenticator_data: Option<String>,
pub client_data_json: Option<String>,
pub signature: Option<String>,
pub user_handle: Option<String>,
}
Expand description
WebAuthnAuthenticatorAuthenticationResponse : The authenticator’s response for the authentication ceremony in its encoded format
Fields§
§authenticator_data: Option<String>
§client_data_json: Option<String>
§signature: Option<String>
§user_handle: Option<String>
Implementations§
source§impl WebAuthnAuthenticatorAuthenticationResponse
impl WebAuthnAuthenticatorAuthenticationResponse
sourcepub fn new() -> WebAuthnAuthenticatorAuthenticationResponse
pub fn new() -> WebAuthnAuthenticatorAuthenticationResponse
The authenticator’s response for the authentication ceremony in its encoded format
Trait Implementations§
source§impl Clone for WebAuthnAuthenticatorAuthenticationResponse
impl Clone for WebAuthnAuthenticatorAuthenticationResponse
source§fn clone(&self) -> WebAuthnAuthenticatorAuthenticationResponse
fn clone(&self) -> WebAuthnAuthenticatorAuthenticationResponse
Returns a copy 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 Default for WebAuthnAuthenticatorAuthenticationResponse
impl Default for WebAuthnAuthenticatorAuthenticationResponse
source§fn default() -> WebAuthnAuthenticatorAuthenticationResponse
fn default() -> WebAuthnAuthenticatorAuthenticationResponse
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for WebAuthnAuthenticatorAuthenticationResponse
impl<'de> Deserialize<'de> for WebAuthnAuthenticatorAuthenticationResponse
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 PartialEq for WebAuthnAuthenticatorAuthenticationResponse
impl PartialEq for WebAuthnAuthenticatorAuthenticationResponse
source§fn eq(&self, other: &WebAuthnAuthenticatorAuthenticationResponse) -> bool
fn eq(&self, other: &WebAuthnAuthenticatorAuthenticationResponse) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for WebAuthnAuthenticatorAuthenticationResponse
Auto Trait Implementations§
impl RefUnwindSafe for WebAuthnAuthenticatorAuthenticationResponse
impl Send for WebAuthnAuthenticatorAuthenticationResponse
impl Sync for WebAuthnAuthenticatorAuthenticationResponse
impl Unpin for WebAuthnAuthenticatorAuthenticationResponse
impl UnwindSafe for WebAuthnAuthenticatorAuthenticationResponse
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