pub struct LimitingSink { /* private fields */ }Expand description
Limiting sink that stops after collecting N rows.
Enables early termination for LIMIT queries.
Implementations§
Source§impl LimitingSink
impl LimitingSink
Sourcepub fn into_chunks(self) -> Vec<DataChunk>
pub fn into_chunks(self) -> Vec<DataChunk>
Take ownership of collected chunks.
Trait Implementations§
Source§impl Sink for LimitingSink
impl Sink for LimitingSink
Auto Trait Implementations§
impl Freeze for LimitingSink
impl RefUnwindSafe for LimitingSink
impl Send for LimitingSink
impl Sync for LimitingSink
impl Unpin for LimitingSink
impl UnwindSafe for LimitingSink
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