pub struct AggregateStats {
pub total_sessions: usize,
pub total_messages: usize,
}Expand description
Aggregate statistics from O(1) table
Fields§
§total_sessions: usize§total_messages: usizeTrait Implementations§
Source§impl Clone for AggregateStats
impl Clone for AggregateStats
Source§fn clone(&self) -> AggregateStats
fn clone(&self) -> AggregateStats
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 AggregateStats
impl Debug for AggregateStats
Source§impl Default for AggregateStats
impl Default for AggregateStats
Source§fn default() -> AggregateStats
fn default() -> AggregateStats
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for AggregateStats
impl RefUnwindSafe for AggregateStats
impl Send for AggregateStats
impl Sync for AggregateStats
impl Unpin for AggregateStats
impl UnsafeUnpin for AggregateStats
impl UnwindSafe for AggregateStats
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