pub struct MFAFactor {
pub id: String,
pub friendly_name: Option<String>,
pub factor_type: MFAFactorType,
pub status: MFAFactorStatus,
pub created_at: String,
pub updated_at: String,
}
Expand description
MFAファクター情報
Fields§
§id: String
§friendly_name: Option<String>
§factor_type: MFAFactorType
§status: MFAFactorStatus
§created_at: String
§updated_at: String
Trait Implementations§
Source§impl<'de> Deserialize<'de> for MFAFactor
impl<'de> Deserialize<'de> for MFAFactor
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 MFAFactor
impl RefUnwindSafe for MFAFactor
impl Send for MFAFactor
impl Sync for MFAFactor
impl Unpin for MFAFactor
impl UnwindSafe for MFAFactor
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