pub enum WindowFrameContext {
Rows(Arc<WindowFrame>),
Range {
window_frame: Arc<WindowFrame>,
state: WindowFrameStateRange,
},
Groups {
window_frame: Arc<WindowFrame>,
state: WindowFrameStateGroups,
},
}
Expand description
This object stores the window frame state for use in incremental calculations.
Variants§
Rows(Arc<WindowFrame>)
ROWS frames are inherently stateless.
Range
RANGE frames are stateful, they store indices specifying where the previous search left off. This amortizes the overall cost to O(n) where n denotes the row count.
Groups
GROUPS frames are stateful, they store group boundaries and indices specifying where the previous search left off. This amortizes the overall cost to O(n) where n denotes the row count.
Implementations§
Source§impl WindowFrameContext
impl WindowFrameContext
Sourcepub fn new(
window_frame: Arc<WindowFrame>,
sort_options: Vec<SortOptions>,
) -> Self
pub fn new( window_frame: Arc<WindowFrame>, sort_options: Vec<SortOptions>, ) -> Self
Create a new state object for the given window frame.
Trait Implementations§
Source§impl Clone for WindowFrameContext
impl Clone for WindowFrameContext
Source§fn clone(&self) -> WindowFrameContext
fn clone(&self) -> WindowFrameContext
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 WindowFrameContext
impl !RefUnwindSafe for WindowFrameContext
impl Send for WindowFrameContext
impl Sync for WindowFrameContext
impl Unpin for WindowFrameContext
impl !UnwindSafe for WindowFrameContext
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more