pub struct LabelScan<'a> { /* private fields */ }Expand description
Scans all slots for a given label_id, reading specified columns.
Each call to next_chunk() returns one chunk containing one VectorGroup
with all rows for the label (for simplicity in Phase 4; chunked in Phase 5+).
Implementations§
Trait Implementations§
Source§impl<'a> Operator for LabelScan<'a>
impl<'a> Operator for LabelScan<'a>
fn next_chunk(&mut self) -> Result<Option<FactorizedChunk>>
Source§fn collect_all(&mut self) -> Result<Vec<FactorizedChunk>>
fn collect_all(&mut self) -> Result<Vec<FactorizedChunk>>
Drain all chunks and materialize as a Vec.
Auto Trait Implementations§
impl<'a> Freeze for LabelScan<'a>
impl<'a> RefUnwindSafe for LabelScan<'a>
impl<'a> Send for LabelScan<'a>
impl<'a> Sync for LabelScan<'a>
impl<'a> Unpin for LabelScan<'a>
impl<'a> UnsafeUnpin for LabelScan<'a>
impl<'a> UnwindSafe for LabelScan<'a>
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