[][src]Struct dipstick::OutputQueue

pub struct OutputQueue { /* fields omitted */ }

Wrap scope with an asynchronous metric write & flush dispatcher.

Methods

impl OutputQueue[src]

pub fn new<OUT: Output + Send + Sync + 'static>(
    target: OUT,
    queue_length: usize
) -> Self
[src]

Wrap new scopes with an asynchronous metric write & flush dispatcher.

Trait Implementations

impl Input for OutputQueue[src]

type SCOPE = OutputQueueScope

The type of Scope returned byt this input.

fn metrics(&self) -> Self::SCOPE[src]

Wrap new scopes with an asynchronous metric write & flush dispatcher.

fn input(&self) -> Self::SCOPE[src]

Deprecated since 0.7.2:

Use metrics()

Open a new scope from this input.

impl CachedInput for OutputQueue[src]

fn cached(self, max_size: usize) -> InputCache[src]

Wrap an input with a metric definition cache. This can provide performance benefits for metrics that are dynamically defined at runtime on each access. Caching is useless if all metrics are statically declared or instantiated programmatically in advance and referenced by a long living variable. Read more

impl Clone for OutputQueue[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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

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

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.

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

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

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

impl<T> Erased for T