Trait prometheus::core::Metric

source ·
pub trait Metric: Sync + Send + Clone {
    // Required method
    fn metric(&self) -> Metric;
}
Expand description

An interface models a single sample value with its meta data being exported to Prometheus.

Required Methods§

source

fn metric(&self) -> Metric

Return the protocol Metric.

Object Safety§

This trait is not object safe.

Implementors§