pub struct LinkedAccountLinkedInInput {
pub email: Option<String>,
pub name: Option<String>,
pub subject: LinkedAccountLinkedInInputSubject,
pub type_: LinkedAccountLinkedInInputType,
pub vanity_name: Option<String>,
}Expand description
LinkedAccountLinkedInInput
JSON schema
{
"title": "LinkedIn",
"type": "object",
"required": [
"subject",
"type"
],
"properties": {
"email": {
"type": "string",
"format": "email"
},
"name": {
"type": "string"
},
"subject": {
"type": "string",
"pattern": "^[\\x00-\\x7F]{1,256}$"
},
"type": {
"type": "string",
"enum": [
"linkedin_oauth"
]
},
"vanityName": {
"type": "string"
}
}
}Fields§
§email: Option<String>§name: Option<String>§subject: LinkedAccountLinkedInInputSubject§type_: LinkedAccountLinkedInInputType§vanity_name: Option<String>Trait Implementations§
Source§impl Clone for LinkedAccountLinkedInInput
impl Clone for LinkedAccountLinkedInInput
Source§fn clone(&self) -> LinkedAccountLinkedInInput
fn clone(&self) -> LinkedAccountLinkedInInput
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 LinkedAccountLinkedInInput
impl Debug for LinkedAccountLinkedInInput
Source§impl<'de> Deserialize<'de> for LinkedAccountLinkedInInput
impl<'de> Deserialize<'de> for LinkedAccountLinkedInInput
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<&LinkedAccountLinkedInInput> for LinkedAccountLinkedInInput
impl From<&LinkedAccountLinkedInInput> for LinkedAccountLinkedInInput
Source§fn from(value: &LinkedAccountLinkedInInput) -> Self
fn from(value: &LinkedAccountLinkedInInput) -> Self
Converts to this type from the input type.
Source§impl From<LinkedAccountLinkedInInput> for LinkedAccountInput
impl From<LinkedAccountLinkedInInput> for LinkedAccountInput
Source§fn from(value: LinkedAccountLinkedInInput) -> Self
fn from(value: LinkedAccountLinkedInInput) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for LinkedAccountLinkedInInput
impl RefUnwindSafe for LinkedAccountLinkedInInput
impl Send for LinkedAccountLinkedInInput
impl Sync for LinkedAccountLinkedInInput
impl Unpin for LinkedAccountLinkedInInput
impl UnwindSafe for LinkedAccountLinkedInInput
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