pub struct CacheDedupeStats {
pub hash_ms: f64,
pub hash_bytes: u64,
pub block_count: usize,
pub new_block_count: usize,
pub reused_block_count: usize,
}Fields§
§hash_ms: f64§hash_bytes: u64§block_count: usize§new_block_count: usize§reused_block_count: usizeImplementations§
Source§impl CacheDedupeStats
impl CacheDedupeStats
pub fn saturating_add(self, other: Self) -> Self
Trait Implementations§
Source§impl Clone for CacheDedupeStats
impl Clone for CacheDedupeStats
Source§fn clone(&self) -> CacheDedupeStats
fn clone(&self) -> CacheDedupeStats
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for CacheDedupeStats
Source§impl Debug for CacheDedupeStats
impl Debug for CacheDedupeStats
Source§impl Default for CacheDedupeStats
impl Default for CacheDedupeStats
Source§fn default() -> CacheDedupeStats
fn default() -> CacheDedupeStats
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for CacheDedupeStats
impl RefUnwindSafe for CacheDedupeStats
impl Send for CacheDedupeStats
impl Sync for CacheDedupeStats
impl Unpin for CacheDedupeStats
impl UnsafeUnpin for CacheDedupeStats
impl UnwindSafe for CacheDedupeStats
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