[][src]Struct metered::InFlight

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

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: Clone + Gauge> Clone for InFlight<G>[src]

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

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

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

type Target = G

The resulting type after dereferencing.

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> Metric<R> for InFlight<G>[src]

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

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

Auto Trait Implementations

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

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

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

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

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

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> 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.