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