pub struct MfaMethodsTotp {
pub enrolled_at: DateTime<Utc>,
}Expand description
An object containing information about the end user’s TOTP enrollment.
JSON schema
{
"description": "An object containing information about the end user's TOTP enrollment.",
"type": "object",
"required": [
"enrolledAt"
],
"properties": {
"enrolledAt": {
"description": "The date and time when the method was enrolled, in ISO 8601 format.",
"examples": [
"2025-01-15T10:30:00Z"
],
"type": "string",
"format": "date-time"
}
}
}Fields§
§enrolled_at: DateTime<Utc>The date and time when the method was enrolled, in ISO 8601 format.
Implementations§
Source§impl MfaMethodsTotp
impl MfaMethodsTotp
pub fn builder() -> MfaMethodsTotp
Trait Implementations§
Source§impl Clone for MfaMethodsTotp
impl Clone for MfaMethodsTotp
Source§fn clone(&self) -> MfaMethodsTotp
fn clone(&self) -> MfaMethodsTotp
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 MfaMethodsTotp
impl Debug for MfaMethodsTotp
Source§impl<'de> Deserialize<'de> for MfaMethodsTotp
impl<'de> Deserialize<'de> for MfaMethodsTotp
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
Source§impl From<&MfaMethodsTotp> for MfaMethodsTotp
impl From<&MfaMethodsTotp> for MfaMethodsTotp
Source§fn from(value: &MfaMethodsTotp) -> Self
fn from(value: &MfaMethodsTotp) -> Self
Converts to this type from the input type.
Source§impl From<MfaMethodsTotp> for MfaMethodsTotp
impl From<MfaMethodsTotp> for MfaMethodsTotp
Source§fn from(value: MfaMethodsTotp) -> Self
fn from(value: MfaMethodsTotp) -> Self
Converts to this type from the input type.
Source§impl Serialize for MfaMethodsTotp
impl Serialize for MfaMethodsTotp
Source§impl TryFrom<MfaMethodsTotp> for MfaMethodsTotp
impl TryFrom<MfaMethodsTotp> for MfaMethodsTotp
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§fn try_from(value: MfaMethodsTotp) -> Result<Self, ConversionError>
fn try_from(value: MfaMethodsTotp) -> Result<Self, ConversionError>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for MfaMethodsTotp
impl RefUnwindSafe for MfaMethodsTotp
impl Send for MfaMethodsTotp
impl Sync for MfaMethodsTotp
impl Unpin for MfaMethodsTotp
impl UnsafeUnpin for MfaMethodsTotp
impl UnwindSafe for MfaMethodsTotp
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