Enum stretto::MetricType
source · [−]#[repr(u16)]
pub enum MetricType {
Hit,
Miss,
KeyAdd,
KeyUpdate,
KeyEvict,
CostAdd,
CostEvict,
DropSets,
RejectSets,
DropGets,
KeepGets,
DoNotUse,
}Expand description
The data field in a Metrics
Variants
Hit
track hits.
Miss
track misses
KeyAdd
track keys added
KeyUpdate
track keys updated
KeyEvict
track keys evicted
CostAdd
track the cost of keys added
CostEvict
track the cost of keys evicted
DropSets
track how many sets were dropped
RejectSets
track how many sets were rejected
DropGets
track how many gets were dropped on the floor
KeepGets
track how many gets were kept on the floor
DoNotUse
This should be the final enum. Other enums should be set before this.
Trait Implementations
sourceimpl Clone for MetricType
impl Clone for MetricType
sourcefn clone(&self) -> MetricType
fn clone(&self) -> MetricType
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for MetricType
impl Debug for MetricType
sourceimpl Display for MetricType
impl Display for MetricType
sourceimpl Hash for MetricType
impl Hash for MetricType
sourceimpl Ord for MetricType
impl Ord for MetricType
sourceimpl PartialEq<MetricType> for MetricType
impl PartialEq<MetricType> for MetricType
sourceimpl PartialOrd<MetricType> for MetricType
impl PartialOrd<MetricType> for MetricType
sourcefn partial_cmp(&self, other: &MetricType) -> Option<Ordering>
fn partial_cmp(&self, other: &MetricType) -> Option<Ordering>
This method returns an ordering between self and other values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self and other) and is used by the <=
operator. Read more
impl Copy for MetricType
impl Eq for MetricType
impl StructuralEq for MetricType
impl StructuralPartialEq for MetricType
Auto Trait Implementations
impl RefUnwindSafe for MetricType
impl Send for MetricType
impl Sync for MetricType
impl Unpin for MetricType
impl UnwindSafe for MetricType
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
toowned_clone_into)Uses borrowed data to replace owned data, usually by cloning. Read more