pub struct CCAssetTwitter {
pub unit: String,
pub timestamp: i64,
pub type_: String,
pub asset_id: i32,
pub asset_symbol: String,
pub total_following: i32,
pub total_followers: i32,
pub total_favourites: i32,
pub total_lists: i32,
pub total_statuses: i32,
pub twitter_accounts: Option<Vec<CCAssetTwitterAccount>>,
}
Expand description
Asset: Historical X (Twitter)
Fields§
§unit: String
§timestamp: i64
§type_: String
§asset_id: i32
§asset_symbol: String
§total_following: i32
§total_followers: i32
§total_favourites: i32
§total_lists: i32
§total_statuses: i32
§twitter_accounts: Option<Vec<CCAssetTwitterAccount>>
Trait Implementations§
source§impl Debug for CCAssetTwitter
impl Debug for CCAssetTwitter
source§impl<'de> Deserialize<'de> for CCAssetTwitter
impl<'de> Deserialize<'de> for CCAssetTwitter
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 CCAssetTwitter
impl RefUnwindSafe for CCAssetTwitter
impl Send for CCAssetTwitter
impl Sync for CCAssetTwitter
impl Unpin for CCAssetTwitter
impl UnwindSafe for CCAssetTwitter
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