Enum prometheus_parse::Value [−][src]
pub enum Value {
Counter(f64),
Gauge(f64),
Histogram(Vec<HistogramCount>),
Summary(Vec<SummaryCount>),
Untyped(f64),
}Variants
Counter(f64)Tuple Fields of Counter
0: f64Gauge(f64)Tuple Fields of Gauge
0: f64Histogram(Vec<HistogramCount>)Tuple Fields of Histogram
0: Vec<HistogramCount>Summary(Vec<SummaryCount>)Tuple Fields of Summary
0: Vec<SummaryCount>Untyped(f64)Tuple Fields of Untyped
0: f64