Enum dipstick::ScoreType [] [src]

pub enum ScoreType {
    Count(u64),
    Sum(u64),
    Max(u64),
    Min(u64),
    Mean(f64),
    Rate(f64),
}

Possibly aggregated scores.

Variants

Number of times the metric was used.

Sum of metric values reported.

Biggest value reported.

Smallest value reported.

Average value (hit count / sum, non-atomic)

Mean rate (hit count / period length in seconds, non-atomic)

Trait Implementations

impl Debug for ScoreType
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for ScoreType
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Copy for ScoreType
[src]

Auto Trait Implementations

impl Send for ScoreType

impl Sync for ScoreType