pub enum DebugValue {
Counter(u64),
Gauge(OrderedFloat<f64>),
Histogram(Vec<OrderedFloat<f64>>),
}
Available on crate feature
debugging
only.Expand description
A point-in-time value for a metric exposing raw values.
Variants§
Trait Implementations§
source§impl Debug for DebugValue
impl Debug for DebugValue
source§impl Hash for DebugValue
impl Hash for DebugValue
source§impl PartialEq for DebugValue
impl PartialEq for DebugValue
impl Eq for DebugValue
impl StructuralPartialEq for DebugValue
Auto Trait Implementations§
impl Freeze for DebugValue
impl RefUnwindSafe for DebugValue
impl Send for DebugValue
impl Sync for DebugValue
impl Unpin for DebugValue
impl UnwindSafe for DebugValue
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.