pub struct AssetTwitterAccount {
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 Clone for AssetTwitterAccount
impl Clone for AssetTwitterAccount
Source§fn clone(&self) -> AssetTwitterAccount
fn clone(&self) -> AssetTwitterAccount
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 Debug for AssetTwitterAccount
impl Debug for AssetTwitterAccount
Source§impl<'de> Deserialize<'de> for AssetTwitterAccount
impl<'de> Deserialize<'de> for AssetTwitterAccount
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 AssetTwitterAccount
impl RefUnwindSafe for AssetTwitterAccount
impl Send for AssetTwitterAccount
impl Sync for AssetTwitterAccount
impl Unpin for AssetTwitterAccount
impl UnsafeUnpin for AssetTwitterAccount
impl UnwindSafe for AssetTwitterAccount
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