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<SmsMfaMethod, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<SmsMfaMethod, <__D as Deserializer<'de>>::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) -> SmsMfaMethod
fn from(value: &SmsMfaMethod) -> SmsMfaMethod
Converts to this type from the input type.
Source§impl From<SmsMfaMethod> for OAuthLinkResponseBodyMfaMethodsItem
impl From<SmsMfaMethod> for OAuthLinkResponseBodyMfaMethodsItem
Source§fn from(value: SmsMfaMethod) -> OAuthLinkResponseBodyMfaMethodsItem
fn from(value: SmsMfaMethod) -> OAuthLinkResponseBodyMfaMethodsItem
Converts to this type from the input type.
Source§impl From<SmsMfaMethod> for UserMfaMethodsItem
impl From<SmsMfaMethod> for UserMfaMethodsItem
Source§fn from(value: SmsMfaMethod) -> UserMfaMethodsItem
fn from(value: SmsMfaMethod) -> UserMfaMethodsItem
Converts to this type from the input type.
Source§impl Serialize for SmsMfaMethod
impl Serialize for SmsMfaMethod
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
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