pub trait Gauge: Send + Sync + Debug + DynClone { // Required methods fn set(&self, amount: usize); fn update(&self, delta: i64); }
A gauge that stores the latest value.
Set the gauge value
Update the gauge value