[][src]Struct metrics_util::MetricKind

pub struct MetricKind(_);

Metric kind.

Useful for defining the kind of a metric in metadata, or creating a sum of metric kinds to describe allowed metric kinds for a specific operation, etc.

In order to use for defining multiple metric kinds, can be used in a bitmask fashion, as this type implements bitwise OR support, and checking for inclusion of a specific kind within another kind value can be checked via contains:

// Let's only match counters and histograms:
let mask = MetricKind::COUNTER | MetricKind::HISTOGRAM;

// And check to see if the kinds we have matches our mask:
assert!(!mask.contains(MetricKind::GAUGE));
assert!(mask.contains(MetricKind::COUNTER));

// There's even two handy versions to avoid extra typing:
let none_mask = MetricKind::NONE;
let all_mask = MetricKind::ALL;

assert!(!none_mask.contains(MetricKind::COUNTER));
assert!(!none_mask.contains(MetricKind::GAUGE));
assert!(!none_mask.contains(MetricKind::HISTOGRAM));
assert!(all_mask.contains(MetricKind::COUNTER));
assert!(all_mask.contains(MetricKind::GAUGE));
assert!(all_mask.contains(MetricKind::HISTOGRAM));

Implementations

impl MetricKind[src]

pub const NONE: MetricKind[src]

No metric kinds.

pub const COUNTER: MetricKind[src]

The counter kind.

pub const GAUGE: MetricKind[src]

The gauge kind.

pub const HISTOGRAM: MetricKind[src]

The histogram kind.

pub const ALL: MetricKind[src]

All metric kind.

pub fn contains(&self, other: MetricKind) -> bool[src]

Whether or not this metric kind contains the specified kind.

Trait Implementations

impl BitOr<MetricKind> for MetricKind[src]

type Output = Self

The resulting type after applying the | operator.

impl Clone for MetricKind[src]

impl Copy for MetricKind[src]

impl Debug for MetricKind[src]

impl Eq for MetricKind[src]

impl Hash for MetricKind[src]

impl Ord for MetricKind[src]

impl PartialEq<MetricKind> for MetricKind[src]

impl PartialOrd<MetricKind> for MetricKind[src]

impl StructuralEq for MetricKind[src]

impl StructuralPartialEq for MetricKind[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Pointable for T[src]

type Init = T

The type for initializers.

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.