pub enum MetricField {
LastValue,
Mean,
StdDev,
Min,
Max,
Sum,
Var,
Skew,
Count,
Generation,
UpdateCount,
}Expand description
Which statistic to extract from a metric in a [MetricSet].
Variants§
Trait Implementations§
Source§impl Clone for MetricField
impl Clone for MetricField
Source§fn clone(&self) -> MetricField
fn clone(&self) -> MetricField
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 moreimpl Copy for MetricField
Source§impl Debug for MetricField
impl Debug for MetricField
impl Eq for MetricField
Source§impl Hash for MetricField
impl Hash for MetricField
Source§impl PartialEq for MetricField
impl PartialEq for MetricField
Source§fn eq(&self, other: &MetricField) -> bool
fn eq(&self, other: &MetricField) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for MetricField
Auto Trait Implementations§
impl Freeze for MetricField
impl RefUnwindSafe for MetricField
impl Send for MetricField
impl Sync for MetricField
impl Unpin for MetricField
impl UnsafeUnpin for MetricField
impl UnwindSafe for MetricField
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§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.