pub enum MeanValue<T> {
Single(T),
Mean(T, T),
}
Expand description
The result of a percentile (e.g. median) lookup.
Variants§
Single(T)
A single value was found.
Mean(T, T)
The percentile lies between two values. Take the mean of these to get the percentile.