pub struct SmsMfaMethod {
pub type_: SmsMfaMethodType,
pub verified_at: f64,
}Expand description
SmsMfaMethod
JSON schema
{
"title": "SMS",
"type": "object",
"required": [
"type",
"verified_at"
],
"properties": {
"type": {
"type": "string",
"enum": [
"sms"
]
},
"verified_at": {
"type": "number"
}
}
}Fields§
§type_: SmsMfaMethodType§verified_at: f64Trait Implementations§
Source§impl Clone for SmsMfaMethod
impl Clone for SmsMfaMethod
Source§fn clone(&self) -> SmsMfaMethod
fn clone(&self) -> SmsMfaMethod
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 SmsMfaMethod
impl Debug for SmsMfaMethod
Source§impl<'de> Deserialize<'de> for SmsMfaMethod
impl<'de> Deserialize<'de> for SmsMfaMethod
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<&SmsMfaMethod> for SmsMfaMethod
impl From<&SmsMfaMethod> for SmsMfaMethod
Source§fn from(value: &SmsMfaMethod) -> Self
fn from(value: &SmsMfaMethod) -> Self
Converts to this type from the input type.
Source§impl From<SmsMfaMethod> for OAuthLinkResponseBodyMfaMethodsItem
impl From<SmsMfaMethod> for OAuthLinkResponseBodyMfaMethodsItem
Source§fn from(value: SmsMfaMethod) -> Self
fn from(value: SmsMfaMethod) -> Self
Converts to this type from the input type.
Source§impl From<SmsMfaMethod> for UserMfaMethodsItem
impl From<SmsMfaMethod> for UserMfaMethodsItem
Source§fn from(value: SmsMfaMethod) -> Self
fn from(value: SmsMfaMethod) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for SmsMfaMethod
impl RefUnwindSafe for SmsMfaMethod
impl Send for SmsMfaMethod
impl Sync for SmsMfaMethod
impl Unpin for SmsMfaMethod
impl UnwindSafe for SmsMfaMethod
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