pub struct TwitterCredentials {
pub consumer_key: String,
pub consumer_secret: String,
pub access_token: String,
pub access_token_secret: String,
}Expand description
Per-tenant X/Twitter credentials for OAuth 1.0a signing.
Fields§
§consumer_key: String§consumer_secret: String§access_token: String§access_token_secret: StringTrait Implementations§
Source§impl Clone for TwitterCredentials
impl Clone for TwitterCredentials
Source§fn clone(&self) -> TwitterCredentials
fn clone(&self) -> TwitterCredentials
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 moreAuto Trait Implementations§
impl Freeze for TwitterCredentials
impl RefUnwindSafe for TwitterCredentials
impl Send for TwitterCredentials
impl Sync for TwitterCredentials
impl Unpin for TwitterCredentials
impl UnsafeUnpin for TwitterCredentials
impl UnwindSafe for TwitterCredentials
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