pub struct MfaInfo {
pub mfa_enrollment_id: Option<String>,
pub display_name: Option<String>,
pub phone_info: Option<String>,
pub enrolled_at: Option<String>,
}Expand description
Multi-factor authentication information.
Fields§
§mfa_enrollment_id: Option<String>The MFA enrollment ID.
display_name: Option<String>The display name for this MFA method.
phone_info: Option<String>The phone number info for this MFA method.
enrolled_at: Option<String>The date and time this MFA method was enrolled.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for MfaInfo
impl<'de> Deserialize<'de> for MfaInfo
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 MfaInfo
impl RefUnwindSafe for MfaInfo
impl Send for MfaInfo
impl Sync for MfaInfo
impl Unpin for MfaInfo
impl UnwindSafe for MfaInfo
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