Skip to main content

Mountain/Cache/AssetMemoryMap/
CacheStats.rs

1
2//! Snapshot of asset-cache occupancy. Returned by
3//! `Cache::AssetMemoryMap::Stats::Fn`.
4
5#[derive(Debug, Clone, Copy)]
6pub struct Struct {
7	pub Entries:usize,
8
9	pub BrotliEntries:usize,
10
11	pub Bytes:usize,
12
13	pub BrotliBytes:usize,
14}