pub struct MfaSetupData {
pub secret: String,
pub qr_code: String,
pub backup_codes: Vec<String>,
}Expand description
MFA setup data for new MFA enrollment.
Fields§
§secret: String§qr_code: String§backup_codes: Vec<String>Trait Implementations§
Source§impl Clone for MfaSetupData
impl Clone for MfaSetupData
Source§fn clone(&self) -> MfaSetupData
fn clone(&self) -> MfaSetupData
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 Debug for MfaSetupData
impl Debug for MfaSetupData
Source§impl<'de> Deserialize<'de> for MfaSetupData
impl<'de> Deserialize<'de> for MfaSetupData
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 MfaSetupData
impl RefUnwindSafe for MfaSetupData
impl Send for MfaSetupData
impl Sync for MfaSetupData
impl Unpin for MfaSetupData
impl UnwindSafe for MfaSetupData
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