Trait metrics::local_stats::Details
source · pub trait Details<T: NumberType>: Debug {
// Required method
fn value(&self) -> T;
}
Expand description
A helper trait that can be associated with information that is tracked with a histogram. For example, if histogram is tracking latencies and for debugging reasons, if we want to track size of IO along with latency, this trait makes that posssible.