pub struct LinkedAccountLinkedInOauth {
pub email: Option<String>,
pub first_verified_at: Option<f64>,
pub latest_verified_at: Option<f64>,
pub name: Option<String>,
pub subject: String,
pub type_: LinkedAccountLinkedInOauthType,
pub vanity_name: Option<String>,
pub verified_at: f64,
}Expand description
LinkedAccountLinkedInOauth
JSON schema
{
"title": "LinkedIn",
"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"
]
},
"name": {
"type": "string"
},
"subject": {
"type": "string"
},
"type": {
"type": "string",
"enum": [
"linkedin_oauth"
]
},
"vanity_name": {
"type": "string"
},
"verified_at": {
"type": "number"
}
}
}Fields§
§email: Option<String>§first_verified_at: Option<f64>§latest_verified_at: Option<f64>§name: Option<String>§subject: String§type_: LinkedAccountLinkedInOauthType§vanity_name: Option<String>§verified_at: f64Trait Implementations§
Source§impl Clone for LinkedAccountLinkedInOauth
impl Clone for LinkedAccountLinkedInOauth
Source§fn clone(&self) -> LinkedAccountLinkedInOauth
fn clone(&self) -> LinkedAccountLinkedInOauth
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 LinkedAccountLinkedInOauth
impl Debug for LinkedAccountLinkedInOauth
Source§impl<'de> Deserialize<'de> for LinkedAccountLinkedInOauth
impl<'de> Deserialize<'de> for LinkedAccountLinkedInOauth
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<LinkedAccountLinkedInOauth, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<LinkedAccountLinkedInOauth, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<&LinkedAccountLinkedInOauth> for LinkedAccountLinkedInOauth
impl From<&LinkedAccountLinkedInOauth> for LinkedAccountLinkedInOauth
Source§fn from(value: &LinkedAccountLinkedInOauth) -> LinkedAccountLinkedInOauth
fn from(value: &LinkedAccountLinkedInOauth) -> LinkedAccountLinkedInOauth
Converts to this type from the input type.
Source§impl From<LinkedAccountLinkedInOauth> for LinkedAccount
impl From<LinkedAccountLinkedInOauth> for LinkedAccount
Source§fn from(value: LinkedAccountLinkedInOauth) -> LinkedAccount
fn from(value: LinkedAccountLinkedInOauth) -> LinkedAccount
Converts to this type from the input type.
Source§impl Serialize for LinkedAccountLinkedInOauth
impl Serialize for LinkedAccountLinkedInOauth
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 LinkedAccountLinkedInOauth
impl RefUnwindSafe for LinkedAccountLinkedInOauth
impl Send for LinkedAccountLinkedInOauth
impl Sync for LinkedAccountLinkedInOauth
impl Unpin for LinkedAccountLinkedInOauth
impl UnwindSafe for LinkedAccountLinkedInOauth
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