pub struct FrequencyPrefix {
pub entries: Vec<(Value, u64)>,
pub omitted_max: u64,
}Expand description
The values one column’s frequency synopsis lists, with a bound on everything it left out.
What Reader::frequency_prefix answers. The counts are exact, and omitted_max is how many
rows any value not in the list can hold, which is zero when nothing was left out at all.
Fields§
§entries: Vec<(Value, u64)>Every value the synopsis lists, with the number of rows holding it, count descending.
omitted_max: u64How many rows the most common value outside the list holds, and zero for a complete list.
Trait Implementations§
Source§impl Clone for FrequencyPrefix
impl Clone for FrequencyPrefix
Auto Trait Implementations§
impl Freeze for FrequencyPrefix
impl RefUnwindSafe for FrequencyPrefix
impl Send for FrequencyPrefix
impl Sync for FrequencyPrefix
impl Unpin for FrequencyPrefix
impl UnsafeUnpin for FrequencyPrefix
impl UnwindSafe for FrequencyPrefix
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