Struct cov::raw::HistogramBucket [] [src]

pub struct HistogramBucket {
    pub num: u32,
    pub min: u64,
    pub sum: u64,
}

A bucket in the Histogram.

Fields

Number of counters whose profile count falls within the bucket.

Smallest profile count included in this bucket.

Cumulative value of the profile counts in this bucket.

Trait Implementations

impl Copy for HistogramBucket
[src]

impl Clone for HistogramBucket
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl PartialEq for HistogramBucket
[src]

[src]

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

[src]

This method tests for !=.

impl Eq for HistogramBucket
[src]

impl Hash for HistogramBucket
[src]

[src]

Feeds this value into the given [Hasher]. Read more

1.3.0
[src]

Feeds a slice of this type into the given [Hasher]. Read more

impl Debug for HistogramBucket
[src]

[src]

Formats the value using the given formatter.

impl Default for HistogramBucket
[src]

[src]

Returns the "default value" for a type. Read more