pub struct StateStatistics {
pub total_entries: usize,
pub active_entries: usize,
pub expired_entries: usize,
pub checkpoint_count: usize,
pub last_checkpoint_time: u64,
}Expand description
Statistics about state store
Fields§
§total_entries: usizeTotal number of entries (including expired)
active_entries: usizeNumber of active (non-expired) entries
expired_entries: usizeNumber of expired entries
checkpoint_count: usizeNumber of checkpoints
last_checkpoint_time: u64Time of last checkpoint
Trait Implementations§
Source§impl Clone for StateStatistics
impl Clone for StateStatistics
Source§fn clone(&self) -> StateStatistics
fn clone(&self) -> StateStatistics
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 moreAuto Trait Implementations§
impl Freeze for StateStatistics
impl RefUnwindSafe for StateStatistics
impl Send for StateStatistics
impl Sync for StateStatistics
impl Unpin for StateStatistics
impl UnwindSafe for StateStatistics
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