pub struct LinkedInApplicationConfiguration {
pub button_text: Option<String>,
pub client_id: Option<String>,
pub client_secret: Option<String>,
pub scope: Option<String>,
pub data: Option<HashMap<String, Value>>,
pub create_registration: Option<bool>,
}
Expand description
LinkedInApplicationConfiguration :
Fields§
§client_id: Option<String>
§client_secret: Option<String>
§scope: Option<String>
§data: Option<HashMap<String, Value>>
§create_registration: Option<bool>
Implementations§
Trait Implementations§
Source§impl Clone for LinkedInApplicationConfiguration
impl Clone for LinkedInApplicationConfiguration
Source§fn clone(&self) -> LinkedInApplicationConfiguration
fn clone(&self) -> LinkedInApplicationConfiguration
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 Default for LinkedInApplicationConfiguration
impl Default for LinkedInApplicationConfiguration
Source§fn default() -> LinkedInApplicationConfiguration
fn default() -> LinkedInApplicationConfiguration
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for LinkedInApplicationConfiguration
impl<'de> Deserialize<'de> for LinkedInApplicationConfiguration
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 PartialEq for LinkedInApplicationConfiguration
impl PartialEq for LinkedInApplicationConfiguration
Source§fn eq(&self, other: &LinkedInApplicationConfiguration) -> bool
fn eq(&self, other: &LinkedInApplicationConfiguration) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for LinkedInApplicationConfiguration
Auto Trait Implementations§
impl Freeze for LinkedInApplicationConfiguration
impl RefUnwindSafe for LinkedInApplicationConfiguration
impl Send for LinkedInApplicationConfiguration
impl Sync for LinkedInApplicationConfiguration
impl Unpin for LinkedInApplicationConfiguration
impl UnwindSafe for LinkedInApplicationConfiguration
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