pub struct AccountAuthenticationFactors {
pub account_id: String,
pub api_key_count: u32,
pub password_count: u32,
pub verified_email_count: u32,
}Expand description
Authentication factors
Fields§
§account_id: String§api_key_count: u32§password_count: u32§verified_email_count: u32Implementations§
Source§impl AccountAuthenticationFactors
impl AccountAuthenticationFactors
pub fn has_authentication_factor(&self) -> bool
Trait Implementations§
Source§impl Clone for AccountAuthenticationFactors
impl Clone for AccountAuthenticationFactors
Source§fn clone(&self) -> AccountAuthenticationFactors
fn clone(&self) -> AccountAuthenticationFactors
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for AccountAuthenticationFactors
impl Debug for AccountAuthenticationFactors
Source§impl<'de> Deserialize<'de> for AccountAuthenticationFactors
impl<'de> Deserialize<'de> for AccountAuthenticationFactors
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
Auto Trait Implementations§
impl Freeze for AccountAuthenticationFactors
impl RefUnwindSafe for AccountAuthenticationFactors
impl Send for AccountAuthenticationFactors
impl Sync for AccountAuthenticationFactors
impl Unpin for AccountAuthenticationFactors
impl UnsafeUnpin for AccountAuthenticationFactors
impl UnwindSafe for AccountAuthenticationFactors
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