pub trait HistogramOps: Send + Sync + 'static + Debug { // Required method fn record(&self, val: f64); }
Histogram metric operations.
Record a value.