pub struct CCAssetTwitterAccount {
pub url: Option<String>,
pub name: Option<String>,
pub username: Option<String>,
pub verified: Option<bool>,
pub verifyied_type: Option<String>,
pub following: Option<i32>,
pub followers: Option<i32>,
pub favourites: Option<i32>,
pub lists: Option<i32>,
pub statuses: Option<i32>,
}
Fields§
§url: Option<String>
The URL of the X account used to retrieve social metrics.
name: Option<String>
The name of the X account.
username: Option<String>
The username of the X account.
verified: Option<bool>
The verification status of the X account.
verifyied_type: Option<String>
The verification type of the X account.
following: Option<i32>
The number of accounts followed by this X account.
followers: Option<i32>
The number of followers of this X account.
favourites: Option<i32>
The number of tweets favorited by this X account.
lists: Option<i32>
The number of lists this X account is a member of.
statuses: Option<i32>
The number of tweets and retweets made by this X account.
Trait Implementations§
Source§impl Debug for CCAssetTwitterAccount
impl Debug for CCAssetTwitterAccount
Source§impl<'de> Deserialize<'de> for CCAssetTwitterAccount
impl<'de> Deserialize<'de> for CCAssetTwitterAccount
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 CCAssetTwitterAccount
impl RefUnwindSafe for CCAssetTwitterAccount
impl Send for CCAssetTwitterAccount
impl Sync for CCAssetTwitterAccount
impl Unpin for CCAssetTwitterAccount
impl UnwindSafe for CCAssetTwitterAccount
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