Struct metrics_util::CompositeKey[][src]

pub struct CompositeKey(_, _);

A composite key that stores both the metric key and the metric kind.

This type is intended to be used by recorders that internally take advantage of the provided Registry type when also using Handle.

Since handles are opaque, having the standard key by itself could lead to two different metric kinds tryin to use the same key, calling read or write methods that inevitably panic. With CompositeKey, the kind can tied to the underlying handle, ensuring parity between the two.

Implementations

impl CompositeKey[src]

pub const fn new(kind: MetricKind, key: Key) -> CompositeKey[src]

Creates a new CompositeKey.

pub fn key(&self) -> &Key[src]

Gets the inner key represented by this CompositeKey.

pub fn kind(&self) -> MetricKind[src]

Gets the inner kind represented by this CompositeKey.

pub fn into_parts(self) -> (MetricKind, Key)[src]

Takes the individual pieces of this CompositeKey.

Trait Implementations

impl Clone for CompositeKey[src]

impl Debug for CompositeKey[src]

impl Eq for CompositeKey[src]

impl Hash for CompositeKey[src]

impl Ord for CompositeKey[src]

impl PartialEq<CompositeKey> for CompositeKey[src]

impl PartialOrd<CompositeKey> for CompositeKey[src]

impl StructuralEq for CompositeKey[src]

impl StructuralPartialEq for CompositeKey[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.