pub struct CumeDistState { /* private fields */ }Expand description
State for cume_dist().
The VDBE must step() all rows first, then iterate with value()+inverse(). cume_dist = (current_position) / partition_size.
Auto Trait Implementations§
impl Freeze for CumeDistState
impl RefUnwindSafe for CumeDistState
impl Send for CumeDistState
impl Sync for CumeDistState
impl Unpin for CumeDistState
impl UnsafeUnpin for CumeDistState
impl UnwindSafe for CumeDistState
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