[][src]Struct metered::common::InFlight

pub struct InFlight<G: Gauge = AtomicInt<u64>>(_);

A metric providing an in-flight gauge, showing how many calls are currently active for an expression.

This is a light-weight metric.

This makes sense mostly in a multi-threaded situation where several threads may call the same method constantly, and we want to monitor how many are active at a given time.

The Throughput metric shows an alternative view of the same picture, by reporting how many transactions per seconds are processed by an expression.

By default, InFlight uses a lock-free u64 Gauge, which makes sense in multithread scenarios. Non-threaded applications can gain performance by using a std::cell:Cell<u64> instead.

Trait Implementations

impl<G: Gauge> Clear for InFlight<G>[src]

impl<G: Gauge, R> Metric<R> for InFlight<G>[src]

impl<G: Clone + Gauge> Clone for InFlight<G>[src]

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

Performs copy-assignment from source. Read more

impl<G: Default + Gauge> Default for InFlight<G>[src]

impl<G: Debug + Gauge> Debug for InFlight<G>[src]

impl<G: Gauge> Serialize for InFlight<G> where
    G: Serialize
[src]

impl<G: Gauge> Enter for InFlight<G>[src]

type E = ()

The type returned by the enter function and carried to OnResult

impl<G: Gauge, R> OnResult<R> for InFlight<G>[src]

Auto Trait Implementations

impl<G> Send for InFlight<G> where
    G: Send

impl<G> Sync for InFlight<G> where
    G: Sync

Blanket Implementations

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

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

type Owned = T

impl<T> From for T[src]

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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