[][src]Struct metered::Throughput

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

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<P: RecordThroughput + Serialize + Clear, T: Instant, R> Metric<R> for Throughput<T, P>[src]

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

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

Performs copy-assignment from source. Read more

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

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

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

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, T: Instant, R> OnResult<R> for Throughput<T, P>[src]

Auto Trait Implementations

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

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]