pub struct WebAuthnCredentialResponseModel {
pub object: Option<String>,
pub id: Option<String>,
pub name: Option<String>,
pub prf_status: Option<WebAuthnPrfStatus>,
pub encrypted_user_key: Option<String>,
pub encrypted_public_key: Option<String>,
}
Fields§
§object: Option<String>
§id: Option<String>
§name: Option<String>
§prf_status: Option<WebAuthnPrfStatus>
§encrypted_user_key: Option<String>
§encrypted_public_key: Option<String>
Implementations§
Trait Implementations§
Source§impl Clone for WebAuthnCredentialResponseModel
impl Clone for WebAuthnCredentialResponseModel
Source§fn clone(&self) -> WebAuthnCredentialResponseModel
fn clone(&self) -> WebAuthnCredentialResponseModel
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 WebAuthnCredentialResponseModel
impl Default for WebAuthnCredentialResponseModel
Source§fn default() -> WebAuthnCredentialResponseModel
fn default() -> WebAuthnCredentialResponseModel
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for WebAuthnCredentialResponseModel
impl<'de> Deserialize<'de> for WebAuthnCredentialResponseModel
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 WebAuthnCredentialResponseModel
impl PartialEq for WebAuthnCredentialResponseModel
Source§fn eq(&self, other: &WebAuthnCredentialResponseModel) -> bool
fn eq(&self, other: &WebAuthnCredentialResponseModel) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for WebAuthnCredentialResponseModel
Auto Trait Implementations§
impl Freeze for WebAuthnCredentialResponseModel
impl RefUnwindSafe for WebAuthnCredentialResponseModel
impl Send for WebAuthnCredentialResponseModel
impl Sync for WebAuthnCredentialResponseModel
impl Unpin for WebAuthnCredentialResponseModel
impl UnwindSafe for WebAuthnCredentialResponseModel
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