Skip to main content

Mountain/Cache/PathCanon/
Stats.rs

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