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