[][src]Struct metered::Throughput

pub struct Throughput<T: Instant = StdInstant, P: RecordThroughput = AtomicTxPerSec<T>>(pub P, _);

A metric providing a transaction per second count backed by an histogram.

Because it retrieves the current time before calling the expression, stores it to appropriatly build time windows of 1 second and registers results to an histogram, this is a rather heavy-weight metric better applied at entry-points.

By default, Throughput uses an atomic transaction count backend and a synchronized time source, which work better in multithread scenarios. Non-threaded applications can gain performance by using unsynchronized structures instead.

Trait Implementations

impl<P: RecordThroughput + Clear, T: Instant> Clear for Throughput<T, P>[src]

impl<T: Clone + Instant, P: Clone + RecordThroughput> Clone for Throughput<T, P>[src]

impl<P: RecordThroughput + Debug, T: Instant> Debug for Throughput<T, P>[src]

impl<P: RecordThroughput, T: Instant> Default for Throughput<T, P>[src]

impl<P: RecordThroughput, T: Instant> Deref for Throughput<T, P>[src]

type Target = P

The resulting type after dereferencing.

impl<P: RecordThroughput, T: Instant> Enter for Throughput<T, P>[src]

type E = ()

The type returned by the enter function and carried to OnResult

impl<P: RecordThroughput + Serialize + Clear, T: Instant, R> Metric<R> for Throughput<T, P>[src]

impl<P: RecordThroughput + Serialize, T: Instant, R> OnResult<R> for Throughput<T, P>[src]

impl<P: RecordThroughput + Serialize, T: Instant> Serialize for Throughput<T, P>[src]

Auto Trait Implementations

impl<T, P> RefUnwindSafe for Throughput<T, P> where
    P: RefUnwindSafe,
    T: RefUnwindSafe

impl<T, P> Send for Throughput<T, P> where
    P: Send,
    T: Send

impl<T, P> Sync for Throughput<T, P> where
    P: Sync,
    T: Sync

impl<T, P> Unpin for Throughput<T, P> where
    P: Unpin,
    T: Unpin

impl<T, P> UnwindSafe for Throughput<T, P> where
    P: UnwindSafe,
    T: 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.