#[non_exhaustive]pub struct ExplicitBuckets {
pub bounds: Vec<f64>,
/* private fields */
}Expand description
Describing buckets with arbitrary user-provided width.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.bounds: Vec<f64>‘bound’ is a list of strictly increasing boundaries between
buckets. Note that a list of length N-1 defines N buckets because
of fenceposting. See comments on bucket_options for details.
The i’th finite bucket covers the interval [bound[i-1], bound[i]) where i ranges from 1 to bound_size() - 1. Note that there are no finite buckets at all if ‘bound’ only contains a single element; in that special case the single bound defines the boundary between the underflow and overflow buckets.
bucket number lower bound upper bound i == 0 (underflow) -inf bound[i] 0 < i < bound_size() bound[i-1] bound[i] i == bound_size() (overflow) bound[i-1] +inf
Implementations§
Source§impl ExplicitBuckets
impl ExplicitBuckets
pub fn new() -> Self
Sourcepub fn set_bounds<T, V>(self, v: T) -> Self
pub fn set_bounds<T, V>(self, v: T) -> Self
Sets the value of bounds.
Trait Implementations§
Source§impl Clone for ExplicitBuckets
impl Clone for ExplicitBuckets
Source§fn clone(&self) -> ExplicitBuckets
fn clone(&self) -> ExplicitBuckets
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more