pub struct HistogramBucket {
pub lower: Value,
pub upper: Value,
pub distinct_count: u64,
pub row_count: u64,
}Expand description
An equi-depth histogram bucket.
Fields§
§lower: ValueLower bound (inclusive).
upper: ValueUpper bound (inclusive).
distinct_count: u64Number of distinct values in this bucket.
row_count: u64Number of values in this bucket.
Implementations§
Trait Implementations§
Source§impl Clone for HistogramBucket
impl Clone for HistogramBucket
Source§fn clone(&self) -> HistogramBucket
fn clone(&self) -> HistogramBucket
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for HistogramBucket
impl RefUnwindSafe for HistogramBucket
impl Send for HistogramBucket
impl Sync for HistogramBucket
impl Unpin for HistogramBucket
impl UnwindSafe for HistogramBucket
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more