pub struct FrequencyOccurrences {
pub omitted_max: u64,
pub ordinals: Vec<u64>,
pub anchors: Vec<Value>,
pub anchor_indices: Vec<u16>,
}Expand description
Sparse row ordinals covered by a numeric frequency candidate set.
Fields§
§omitted_max: u64Upper bound for the frequency of every value absent from the fetched rows.
ordinals: Vec<u64>Table-wide row ordinals in ascending order.
anchors: Vec<Value>The retained heavy-hitter values named by anchor_indices.
anchor_indices: Vec<u16>The index in anchors at each ordinal, or empty for a legacy FQ2 directory.
Trait Implementations§
Source§impl Clone for FrequencyOccurrences
impl Clone for FrequencyOccurrences
Source§impl Debug for FrequencyOccurrences
impl Debug for FrequencyOccurrences
Source§impl PartialEq for FrequencyOccurrences
impl PartialEq for FrequencyOccurrences
impl StructuralPartialEq for FrequencyOccurrences
Auto Trait Implementations§
impl Freeze for FrequencyOccurrences
impl RefUnwindSafe for FrequencyOccurrences
impl Send for FrequencyOccurrences
impl Sync for FrequencyOccurrences
impl Unpin for FrequencyOccurrences
impl UnsafeUnpin for FrequencyOccurrences
impl UnwindSafe for FrequencyOccurrences
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