pub trait GaugeFn { // Required methods fn increment(&self, value: f64); fn decrement(&self, value: f64); fn set(&self, value: f64); }
A gauge handler.
Increments the gauge by the given amount.
Decrements the gauge by the given amount.
Sets the gauge to the given amount.