pub struct EndpointOAuthLinkedIn {
pub client_id: Option<String>,
pub client_secret: Option<String>,
pub scopes: Vec<String>,
pub email_addresses: Vec<String>,
pub email_domains: Vec<String>,
}
Fields§
§client_id: Option<String>
§client_secret: Option<String>
§scopes: Vec<String>
§email_addresses: Vec<String>
§email_domains: Vec<String>
Trait Implementations§
Source§impl Clone for EndpointOAuthLinkedIn
impl Clone for EndpointOAuthLinkedIn
Source§fn clone(&self) -> EndpointOAuthLinkedIn
fn clone(&self) -> EndpointOAuthLinkedIn
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 EndpointOAuthLinkedIn
impl Debug for EndpointOAuthLinkedIn
Source§impl Default for EndpointOAuthLinkedIn
impl Default for EndpointOAuthLinkedIn
Source§fn default() -> EndpointOAuthLinkedIn
fn default() -> EndpointOAuthLinkedIn
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for EndpointOAuthLinkedIn
impl<'de> Deserialize<'de> for EndpointOAuthLinkedIn
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
Auto Trait Implementations§
impl Freeze for EndpointOAuthLinkedIn
impl RefUnwindSafe for EndpointOAuthLinkedIn
impl Send for EndpointOAuthLinkedIn
impl Sync for EndpointOAuthLinkedIn
impl Unpin for EndpointOAuthLinkedIn
impl UnwindSafe for EndpointOAuthLinkedIn
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