pub struct WindowFrameStateGroups {
pub group_end_indices: VecDeque<(Vec<ScalarValue>, usize)>,
pub current_group_idx: usize,
}
Expand description
This structure encapsulates all the state information we require as we scan groups of data while processing window frames.
Fields§
§group_end_indices: VecDeque<(Vec<ScalarValue>, usize)>
A tuple containing group values and the row index where the group ends. Example: [[1, 1], [1, 1], [2, 1], [2, 1], …] would correspond to [([1, 1], 2), ([2, 1], 4), …].
current_group_idx: usize
The group index to which the row index belongs.
Trait Implementations§
source§impl Debug for WindowFrameStateGroups
impl Debug for WindowFrameStateGroups
source§impl Default for WindowFrameStateGroups
impl Default for WindowFrameStateGroups
source§fn default() -> WindowFrameStateGroups
fn default() -> WindowFrameStateGroups
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for WindowFrameStateGroups
impl !RefUnwindSafe for WindowFrameStateGroups
impl Send for WindowFrameStateGroups
impl Sync for WindowFrameStateGroups
impl Unpin for WindowFrameStateGroups
impl !UnwindSafe for WindowFrameStateGroups
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