pub struct FrequencyOccurrences {
pub omitted_max: u64,
pub ordinals: Vec<u64>,
}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.
Trait Implementations§
Source§impl Clone for FrequencyOccurrences
impl Clone for FrequencyOccurrences
Source§fn clone(&self) -> FrequencyOccurrences
fn clone(&self) -> FrequencyOccurrences
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for FrequencyOccurrences
impl Debug for FrequencyOccurrences
impl Eq 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