pub struct SecondFactorAssertionCredentialAssertion {
pub algorithm: Option<String>,
pub client_data: String,
pub cred_id: String,
pub signature: String,
pub authenticator_data: Option<String>,
pub user_handle: Option<String>,
}Fields§
§algorithm: Option<String>§client_data: String§cred_id: String§signature: String§authenticator_data: Option<String>§user_handle: Option<String>Trait Implementations§
Source§impl Clone for SecondFactorAssertionCredentialAssertion
impl Clone for SecondFactorAssertionCredentialAssertion
Source§fn clone(&self) -> SecondFactorAssertionCredentialAssertion
fn clone(&self) -> SecondFactorAssertionCredentialAssertion
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 SecondFactorAssertionCredentialAssertion
impl<'de> Deserialize<'de> for SecondFactorAssertionCredentialAssertion
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 SecondFactorAssertionCredentialAssertion
impl PartialEq for SecondFactorAssertionCredentialAssertion
Source§fn eq(&self, other: &SecondFactorAssertionCredentialAssertion) -> bool
fn eq(&self, other: &SecondFactorAssertionCredentialAssertion) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for SecondFactorAssertionCredentialAssertion
Auto Trait Implementations§
impl Freeze for SecondFactorAssertionCredentialAssertion
impl RefUnwindSafe for SecondFactorAssertionCredentialAssertion
impl Send for SecondFactorAssertionCredentialAssertion
impl Sync for SecondFactorAssertionCredentialAssertion
impl Unpin for SecondFactorAssertionCredentialAssertion
impl UnwindSafe for SecondFactorAssertionCredentialAssertion
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