pub struct StoryStatistics {
pub story_interaction_graph: StatisticalGraph,
pub story_reaction_graph: StatisticalGraph,
}
Expand description
A detailed statistics about a story
Fields§
§story_interaction_graph: StatisticalGraph
A graph containing number of story views and shares
story_reaction_graph: StatisticalGraph
A graph containing number of story reactions
Trait Implementations§
Source§impl Clone for StoryStatistics
impl Clone for StoryStatistics
Source§fn clone(&self) -> StoryStatistics
fn clone(&self) -> StoryStatistics
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 StoryStatistics
impl Debug for StoryStatistics
Source§impl<'de> Deserialize<'de> for StoryStatistics
impl<'de> Deserialize<'de> for StoryStatistics
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 StoryStatistics
impl PartialEq for StoryStatistics
Source§impl Serialize for StoryStatistics
impl Serialize for StoryStatistics
impl StructuralPartialEq for StoryStatistics
Auto Trait Implementations§
impl Freeze for StoryStatistics
impl RefUnwindSafe for StoryStatistics
impl Send for StoryStatistics
impl Sync for StoryStatistics
impl Unpin for StoryStatistics
impl UnwindSafe for StoryStatistics
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