pub struct CommunityData {
pub facebook_likes: Option<i64>,
pub twitter_followers: Option<i64>,
pub reddit_average_posts_48h: Option<f64>,
pub reddit_average_comments_48h: Option<f64>,
pub reddit_subscribers: Option<i64>,
pub reddit_accounts_active_48h: Value,
pub telegram_channel_user_count: Option<Option<i64>>,
}Fields§
§facebook_likes: Option<i64>§twitter_followers: Option<i64>§reddit_average_posts_48h: Option<f64>§reddit_average_comments_48h: Option<f64>§reddit_subscribers: Option<i64>§reddit_accounts_active_48h: Value§telegram_channel_user_count: Option<Option<i64>>Trait Implementations§
Source§impl Clone for CommunityData
impl Clone for CommunityData
Source§fn clone(&self) -> CommunityData
fn clone(&self) -> CommunityData
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 moreSource§impl Debug for CommunityData
impl Debug for CommunityData
Source§impl<'de> Deserialize<'de> for CommunityData
impl<'de> Deserialize<'de> for CommunityData
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 CommunityData
impl RefUnwindSafe for CommunityData
impl Send for CommunityData
impl Sync for CommunityData
impl Unpin for CommunityData
impl UnsafeUnpin for CommunityData
impl UnwindSafe for CommunityData
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