Enum prometheus_manager::Value
source · [−]pub enum Value {
Counter(f64),
Gauge(f64),
Histogram(Vec<HistogramCount>),
Summary(Vec<SummaryCount>),
Untyped(f64),
}
Variants
Counter(f64)
Gauge(f64)
Histogram(Vec<HistogramCount>)
Summary(Vec<SummaryCount>)
Untyped(f64)
Implementations
Trait Implementations
sourceimpl PartialEq<Value> for Value
impl PartialEq<Value> for Value
impl StructuralPartialEq for Value
Auto Trait Implementations
impl RefUnwindSafe for Value
impl Send for Value
impl Sync for Value
impl Unpin for Value
impl UnwindSafe for Value
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more