pub struct TikTokConfig {
pub access_token: Option<String>,
pub advertiser_id: Option<String>,
}Expand description
TikTok for Business provider configuration (stub).
Fields§
§access_token: Option<String>Access token.
advertiser_id: Option<String>Advertiser ID.
Trait Implementations§
Source§impl Clone for TikTokConfig
impl Clone for TikTokConfig
Source§fn clone(&self) -> TikTokConfig
fn clone(&self) -> TikTokConfig
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 TikTokConfig
impl Debug for TikTokConfig
Source§impl<'de> Deserialize<'de> for TikTokConfig
impl<'de> Deserialize<'de> for TikTokConfig
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 TikTokConfig
impl RefUnwindSafe for TikTokConfig
impl Send for TikTokConfig
impl Sync for TikTokConfig
impl Unpin for TikTokConfig
impl UnsafeUnpin for TikTokConfig
impl UnwindSafe for TikTokConfig
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