pub struct CacheStats {
pub entries: usize,
pub retained_bytes: usize,
}Expand description
Entry and retained-byte accounting for one cache.
retained_bytes reports the cache-owned logical payload estimate. It does
not include allocator arena slack, operating-system RSS, or memory retained
by unrelated process allocators.
§Examples
use tenferro_tensor::CacheStats;
let stats = CacheStats {
entries: 2,
retained_bytes: 128,
};
assert_eq!(stats.entries, 2);
assert_eq!(stats.retained_bytes, 128);Fields§
§entries: usizeNumber of cache entries currently retained.
retained_bytes: usizeCache-owned retained payload estimate in bytes.
Implementations§
Trait Implementations§
Source§impl Clone for CacheStats
impl Clone for CacheStats
Source§fn clone(&self) -> CacheStats
fn clone(&self) -> CacheStats
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 CacheStats
impl Debug for CacheStats
Source§impl Default for CacheStats
impl Default for CacheStats
Source§fn default() -> CacheStats
fn default() -> CacheStats
Returns the “default value” for a type. Read more
Source§impl PartialEq for CacheStats
impl PartialEq for CacheStats
impl Copy for CacheStats
impl Eq for CacheStats
impl StructuralPartialEq for CacheStats
Auto Trait Implementations§
impl Freeze for CacheStats
impl RefUnwindSafe for CacheStats
impl Send for CacheStats
impl Sync for CacheStats
impl Unpin for CacheStats
impl UnsafeUnpin for CacheStats
impl UnwindSafe for CacheStats
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