pub trait CacheStatsProvider {
    // Required method
    fn publish_cache_stats(&self, cache_stats_builder: &mut CacheStatsBuilder);
}
Expand description

A type that can provide cache stats

Required Methods§

source

fn publish_cache_stats(&self, cache_stats_builder: &mut CacheStatsBuilder)

Publish stats to the provided CacheStatsBuilder.

Implementors§