pub trait CounterContext<T> {
// Required method
fn counters(&self) -> &T;
}Expand description
A context that stores counters.
CounterContext exposes access to counters for observation and debugging.
pub trait CounterContext<T> {
// Required method
fn counters(&self) -> &T;
}A context that stores counters.
CounterContext exposes access to counters for observation and debugging.