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