pub enum StatsMetricType {
Counter,
Gauge,
Timestamp,
}Expand description
Kind of metric tracked by the stats subsystem.
§Examples
use dynomite::stats::{PoolField, StatsMetricType};
assert_eq!(PoolField::ClientEof.kind(), StatsMetricType::Counter);Variants§
Counter
Monotonically increasing accumulator.
Gauge
Non-monotonic gauge that may go up or down.
Timestamp
Monotonic timestamp in seconds since epoch.
Trait Implementations§
Source§impl Clone for StatsMetricType
impl Clone for StatsMetricType
Source§fn clone(&self) -> StatsMetricType
fn clone(&self) -> StatsMetricType
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for StatsMetricType
impl Debug for StatsMetricType
Source§impl PartialEq for StatsMetricType
impl PartialEq for StatsMetricType
Source§fn eq(&self, other: &StatsMetricType) -> bool
fn eq(&self, other: &StatsMetricType) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for StatsMetricType
impl Eq for StatsMetricType
impl StructuralPartialEq for StatsMetricType
Auto Trait Implementations§
impl Freeze for StatsMetricType
impl RefUnwindSafe for StatsMetricType
impl Send for StatsMetricType
impl Sync for StatsMetricType
impl Unpin for StatsMetricType
impl UnsafeUnpin for StatsMetricType
impl UnwindSafe for StatsMetricType
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<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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§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.