pub struct IterationValue<T: Counter> { /* private fields */ }
Expand description

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

Implementations

Create a new IterationValue.

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

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.

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

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

Recorded count for values equivalent to value

Number of values traversed since the last iteration step

Trait Implementations

Formats the value using the given formatter. Read more
This method tests for self and other values to be equal, and is used by ==. Read more
This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.