Enum dipstick::ScoreType [] [src]

pub enum ScoreType {
    HitCount(u64),
    SumOfValues(u64),
    MaximumValue(u64),
    MinimumValue(u64),
    AverageValue(u64),
}

Possibly aggregated scores.

Variants

Number of times the metric was used.

Sum of metric values reported.

Biggest value reported.

Smallest value reported.

Approximative average value (hit count / sum, non-atomic)

Trait Implementations

impl Debug for ScoreType
[src]

[src]

Formats the value using the given formatter.

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]