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.
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".