Struct hdrsample::iterators::IterationValue [] [src]

pub struct IterationValue<T: Counter> { /* fields omitted */ }

The value emitted at each step when iterating over a Histogram.

Methods

impl<T: Counter> IterationValue<T>
[src]

[src]

Create a new IterationValue.

[src]

The value iterated to. Some iterators provide a specific value inside the bucket, while others just use the highest value in the bucket.

[src]

Percent of recorded values that are at or below the current bucket. This is simply the quantile multiplied by 100.0, so if you care about maintaining the best floating-point precision, use quantile() instead.

[src]

Quantile of recorded values that are at or below the current bucket.

[src]

Quantile iterated to, which may be different than quantile() when an iterator provides information about the specific quantile it's iterating to.

[src]

Recorded count for values equivalent to value

[src]

Number of values traversed since the last iteration step

Trait Implementations

impl<T: Debug + Counter> Debug for IterationValue<T>
[src]

[src]

Formats the value using the given formatter.

impl<T: PartialEq + Counter> PartialEq for IterationValue<T>
[src]

[src]

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

[src]

This method tests for !=.