Skip to main content

DevelopmentNodeEnvironment_MicrosoftVSCodeDependency_22NodeVersion_Bundle_Clean_Debug_ElectronProfile_EsbuildCompiler_Mountain/Cache/PathCanon/
Stats.rs

1//! Capture a diagnostic snapshot of the cache.
2
3use crate::Cache::PathCanon::{Cache::CACHE, CacheStats};
4
5pub fn Fn() -> CacheStats::Struct {
6	CacheStats::Struct {
7		Entries:CACHE.entry_count() as usize,
8
9		WeightedSize:CACHE.weighted_size() as usize,
10	}
11}