[][src]Struct metrics_util::DebuggingRecorder

pub struct DebuggingRecorder { /* fields omitted */ }

A simplistic recorder that can be installed and used for debugging or testing.

Callers can easily take snapshots of the metrics at any given time and get access to the raw values.

Implementations

impl DebuggingRecorder[src]

pub fn new() -> DebuggingRecorder[src]

Creates a new DebuggingRecorder.

pub fn with_ordering(ordered: bool) -> Self[src]

Creates a new DebuggingRecorder with ordering enabled or disabled.

When ordering is enabled, any snapshotter derived from this recorder will iterate the collected metrics in order of when the metric was first observed. If ordering is disabled, then the iteration order is undefined.

pub fn snapshotter(&self) -> Snapshotter[src]

Gets a Snapshotter attached to this recorder.

pub fn install(self) -> Result<(), SetRecorderError>[src]

Installs this recorder as the global recorder.

Trait Implementations

impl Recorder for DebuggingRecorder[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<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, 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.