usecore::fmt::Display;pubuseself::{gauge::Gauge,meter::Meter,quantile::Quantile,throughput::Throughput};modgauge;modmeter;modquantile;modthroughput;/// Stateful metric that can display itself.
pubtraitMetric
where
Self: Display,
{/// Updates this metric.
fnupdate(&mutself);}