[][src]Struct dipstick::InputQueue

pub struct InputQueue { /* fields omitted */ }

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

Methods

impl InputQueue[src]

pub fn new<OUT: Input + 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 InputQueue[src]

type SCOPE = InputQueueScope

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 InputQueue[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 InputQueue[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, U> Into<U> for T where
    U: From<T>, 
[src]

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

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.

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