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