pub struct CCAssetReddit {
pub unit: String,
pub timestamp: i64,
pub type_: String,
pub asset_id: i32,
pub asset_symbol: String,
pub total_subscribers: i32,
pub total_active_users: i32,
pub total_average_posts_per_day: f64,
pub total_average_posts_per_hour: f64,
pub total_average_comments_per_day: f64,
pub total_average_comments_per_hour: f64,
pub subreddits: Option<Vec<CCAssetSubreddit>>,
}
Expand description
Asset: Historical Reddit
Fields§
§unit: String
§timestamp: i64
§type_: String
§asset_id: i32
§asset_symbol: String
§total_subscribers: i32
§total_active_users: i32
§total_average_posts_per_day: f64
§total_average_posts_per_hour: f64
§total_average_comments_per_day: f64
§total_average_comments_per_hour: f64
§subreddits: Option<Vec<CCAssetSubreddit>>
Trait Implementations§
source§impl Debug for CCAssetReddit
impl Debug for CCAssetReddit
source§impl<'de> Deserialize<'de> for CCAssetReddit
impl<'de> Deserialize<'de> for CCAssetReddit
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 CCAssetReddit
impl RefUnwindSafe for CCAssetReddit
impl Send for CCAssetReddit
impl Sync for CCAssetReddit
impl Unpin for CCAssetReddit
impl UnwindSafe for CCAssetReddit
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