pub struct FeedPostStats {
pub reacts: Option<HashMap<String, i32>>,
pub comment_count: Option<i32>,
}Fields§
§reacts: Option<HashMap<String, i32>>§comment_count: Option<i32>Implementations§
Source§impl FeedPostStats
impl FeedPostStats
pub fn new() -> FeedPostStats
Trait Implementations§
Source§impl Clone for FeedPostStats
impl Clone for FeedPostStats
Source§fn clone(&self) -> FeedPostStats
fn clone(&self) -> FeedPostStats
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 FeedPostStats
impl Debug for FeedPostStats
Source§impl Default for FeedPostStats
impl Default for FeedPostStats
Source§fn default() -> FeedPostStats
fn default() -> FeedPostStats
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for FeedPostStats
impl<'de> Deserialize<'de> for FeedPostStats
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
Source§impl PartialEq for FeedPostStats
impl PartialEq for FeedPostStats
Source§impl Serialize for FeedPostStats
impl Serialize for FeedPostStats
impl StructuralPartialEq for FeedPostStats
Auto Trait Implementations§
impl Freeze for FeedPostStats
impl RefUnwindSafe for FeedPostStats
impl Send for FeedPostStats
impl Sync for FeedPostStats
impl Unpin for FeedPostStats
impl UnwindSafe for FeedPostStats
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