pub struct MfaMethodsSms {
pub enrolled_at: DateTime<Utc>,
}Expand description
An object containing information about the end user’s SMS MFA enrollment.
JSON schema
{
"description": "An object containing information about the end user's SMS MFA 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 MfaMethodsSms
impl MfaMethodsSms
pub fn builder() -> MfaMethodsSms
Trait Implementations§
Source§impl Clone for MfaMethodsSms
impl Clone for MfaMethodsSms
Source§fn clone(&self) -> MfaMethodsSms
fn clone(&self) -> MfaMethodsSms
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 MfaMethodsSms
impl Debug for MfaMethodsSms
Source§impl<'de> Deserialize<'de> for MfaMethodsSms
impl<'de> Deserialize<'de> for MfaMethodsSms
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<&MfaMethodsSms> for MfaMethodsSms
impl From<&MfaMethodsSms> for MfaMethodsSms
Source§fn from(value: &MfaMethodsSms) -> Self
fn from(value: &MfaMethodsSms) -> Self
Converts to this type from the input type.
Source§impl From<MfaMethodsSms> for MfaMethodsSms
impl From<MfaMethodsSms> for MfaMethodsSms
Source§fn from(value: MfaMethodsSms) -> Self
fn from(value: MfaMethodsSms) -> Self
Converts to this type from the input type.
Source§impl Serialize for MfaMethodsSms
impl Serialize for MfaMethodsSms
Source§impl TryFrom<MfaMethodsSms> for MfaMethodsSms
impl TryFrom<MfaMethodsSms> for MfaMethodsSms
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§fn try_from(value: MfaMethodsSms) -> Result<Self, ConversionError>
fn try_from(value: MfaMethodsSms) -> Result<Self, ConversionError>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for MfaMethodsSms
impl RefUnwindSafe for MfaMethodsSms
impl Send for MfaMethodsSms
impl Sync for MfaMethodsSms
impl Unpin for MfaMethodsSms
impl UnsafeUnpin for MfaMethodsSms
impl UnwindSafe for MfaMethodsSms
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