| 699 | /// Cache health assessment |
| 700 | #[derive(Debug, Clone)] |
| 701 | pub struct CacheHealthScore { |
| 702 | pub overall: f64, |
| 703 | pub hit_rate: f64, |
| 704 | pub memory_efficiency: f64, |
| 705 | pub eviction_health: f64, |
| 706 | pub recommendations: Vec<String>, |
| 707 | } |
nothing calls this directly
no outgoing calls
no test coverage detected