Enum slog_extlog::stats::BucketMethod[][src]

pub enum BucketMethod {
    Freq,
    CumulFreq,
}

Used to determine which buckets to update when a BucketCounter stat is updated

Variants

When a value is recorded, only update the bucket it lands in

When a value us recorded, update its bucket and every higher bucket

Trait Implementations

impl Debug for BucketMethod
[src]

Formats the value using the given formatter. Read more

impl Clone for BucketMethod
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for BucketMethod
[src]

impl PartialEq for BucketMethod
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations