pub struct MfaEnrollResponse {
pub id: String,
pub factor_type: String,
pub friendly_name: Option<String>,
pub totp: Option<MfaTotpInfo>,
pub phone: Option<String>,
}Expand description
Response from MFA enroll.
Fields§
§id: String§factor_type: String§friendly_name: Option<String>§totp: Option<MfaTotpInfo>§phone: Option<String>Trait Implementations§
Source§impl Clone for MfaEnrollResponse
impl Clone for MfaEnrollResponse
Source§fn clone(&self) -> MfaEnrollResponse
fn clone(&self) -> MfaEnrollResponse
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 MfaEnrollResponse
impl Debug for MfaEnrollResponse
Source§impl<'de> Deserialize<'de> for MfaEnrollResponse
impl<'de> Deserialize<'de> for MfaEnrollResponse
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 MfaEnrollResponse
impl RefUnwindSafe for MfaEnrollResponse
impl Send for MfaEnrollResponse
impl Sync for MfaEnrollResponse
impl Unpin for MfaEnrollResponse
impl UnsafeUnpin for MfaEnrollResponse
impl UnwindSafe for MfaEnrollResponse
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