Trait prometheus_client::registry::LocalMetric

source ·
pub trait LocalMetric: EncodeMetric + Debug { }
Expand description

Similar to Metric, but without the Send and Sync requirement.

Implementors§

source§

impl<T> LocalMetric for T
where T: EncodeMetric + Debug,