pub struct LinkedInConfig {
pub access_token: Option<String>,
pub client_id: Option<String>,
pub client_secret: Option<String>,
pub refresh_token: Option<String>,
pub ad_account_id: Option<String>,
}Expand description
LinkedIn Marketing provider configuration (stub).
Fields§
§access_token: Option<String>Access token.
client_id: Option<String>OAuth client ID.
client_secret: Option<String>OAuth client secret.
refresh_token: Option<String>OAuth refresh token.
ad_account_id: Option<String>Ad account ID.
Trait Implementations§
Source§impl Clone for LinkedInConfig
impl Clone for LinkedInConfig
Source§fn clone(&self) -> LinkedInConfig
fn clone(&self) -> LinkedInConfig
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 LinkedInConfig
impl Debug for LinkedInConfig
Source§impl<'de> Deserialize<'de> for LinkedInConfig
impl<'de> Deserialize<'de> for LinkedInConfig
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 LinkedInConfig
impl RefUnwindSafe for LinkedInConfig
impl Send for LinkedInConfig
impl Sync for LinkedInConfig
impl Unpin for LinkedInConfig
impl UnsafeUnpin for LinkedInConfig
impl UnwindSafe for LinkedInConfig
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