pub struct StoreStats {
pub reads: usize,
pub writes: usize,
pub removes: usize,
pub bytes_read: usize,
pub bytes_written: usize,
pub bytes_removed: usize,
pub flushes: usize,
}Fields§
§reads: usize§writes: usize§removes: usize§bytes_read: usize§bytes_written: usize§bytes_removed: usize§flushes: usizeTrait Implementations§
Source§impl Clone for StoreStats
impl Clone for StoreStats
Source§fn clone(&self) -> StoreStats
fn clone(&self) -> StoreStats
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 StoreStats
impl Debug for StoreStats
Source§impl Default for StoreStats
impl Default for StoreStats
Source§fn default() -> StoreStats
fn default() -> StoreStats
Returns the “default value” for a type. Read more
Source§impl PartialEq for StoreStats
impl PartialEq for StoreStats
impl Eq for StoreStats
impl StructuralPartialEq for StoreStats
Auto Trait Implementations§
impl Freeze for StoreStats
impl RefUnwindSafe for StoreStats
impl Send for StoreStats
impl Sync for StoreStats
impl Unpin for StoreStats
impl UnwindSafe for StoreStats
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