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 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 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
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for WebAuthnAuthenticatorAuthenticationResponse
Auto Trait Implementations§
impl Freeze for WebAuthnAuthenticatorAuthenticationResponse
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