pub trait Metric: EncodeMetric + Send + Sync + Debug + 'static { }
Expand description

Super trait representing an abstract Prometheus metric.

Implementors§

source§

impl<T> Metric for Twhere T: EncodeMetric + Send + Sync + Debug + 'static,