pub trait Counter: Send + Sync + 'static { // Required methods fn inc(&self); fn inc_by(&self, v: u64); fn get(&self) -> u64; }
Single counter handle (one specific label combination).