pub struct AuthenticatorAssertionRawResponse {
pub id: Option<Vec<u8>>,
pub raw_id: Option<Vec<u8>>,
pub response: Option<Box<AssertionResponse>>,
pub type: Option<PublicKeyCredentialType>,
pub extensions: Option<Box<AuthenticationExtensionsClientOutputs>>,
}
Fields§
§id: Option<Vec<u8>>
§raw_id: Option<Vec<u8>>
§response: Option<Box<AssertionResponse>>
§type: Option<PublicKeyCredentialType>
§extensions: Option<Box<AuthenticationExtensionsClientOutputs>>
Implementations§
Trait Implementations§
Source§impl Clone for AuthenticatorAssertionRawResponse
impl Clone for AuthenticatorAssertionRawResponse
Source§fn clone(&self) -> AuthenticatorAssertionRawResponse
fn clone(&self) -> AuthenticatorAssertionRawResponse
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 AuthenticatorAssertionRawResponse
impl Default for AuthenticatorAssertionRawResponse
Source§fn default() -> AuthenticatorAssertionRawResponse
fn default() -> AuthenticatorAssertionRawResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AuthenticatorAssertionRawResponse
impl<'de> Deserialize<'de> for AuthenticatorAssertionRawResponse
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 AuthenticatorAssertionRawResponse
impl PartialEq for AuthenticatorAssertionRawResponse
Source§fn eq(&self, other: &AuthenticatorAssertionRawResponse) -> bool
fn eq(&self, other: &AuthenticatorAssertionRawResponse) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for AuthenticatorAssertionRawResponse
Auto Trait Implementations§
impl Freeze for AuthenticatorAssertionRawResponse
impl RefUnwindSafe for AuthenticatorAssertionRawResponse
impl Send for AuthenticatorAssertionRawResponse
impl Sync for AuthenticatorAssertionRawResponse
impl Unpin for AuthenticatorAssertionRawResponse
impl UnwindSafe for AuthenticatorAssertionRawResponse
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