pub struct CacheStats {
pub cap_bytes: u64,
pub used_bytes: u64,
pub entry_count: u64,
pub total_bytes: u64,
pub evicted_count: u64,
pub evicted_bytes: u64,
pub content_cache: ContentCacheCounters,
}Expand description
Result for cache.stats — cache
telemetry beside cache.getConfig:
the reserved cap + live usage, the cached-capsule count + total on-disk
bytes, and the session eviction + content-cache counters.
Fields§
§cap_bytes: u64The on-disk cache size cap in bytes.
used_bytes: u64The bytes currently used on disk.
entry_count: u64The number of durable cached capsules.
total_bytes: u64The total on-disk bytes across the cached capsules.
evicted_count: u64Capsules evicted this session.
evicted_bytes: u64Bytes evicted this session.
content_cache: ContentCacheCountersThe decoded-content cache hit/miss counters.
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 (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 CacheStats
Source§impl Debug for CacheStats
impl Debug for CacheStats
Source§impl<'de> Deserialize<'de> for CacheStats
impl<'de> Deserialize<'de> for CacheStats
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for CacheStats
Source§impl PartialEq for CacheStats
impl PartialEq for CacheStats
Source§impl Serialize for CacheStats
impl Serialize 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