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