pub trait IntGaugeExt { // Required method fn inc_guard(&self) -> impl Drop + '_; }
Increment the gauge, and return a guard that will decrement the gauge when dropped.