pub enum StreamPhase {
Count,
Scan,
Resize,
Materialize,
}Expand description
Phase node kind in the W3.8 Count -> Scan -> Resize -> Materialize schedule.
Variants§
Count
WCOJ count kernel phase.
Scan
Deterministic prefix scan over per-block counts.
Resize
Output allocation phase after scan determines cardinality.
Materialize
WCOJ materialize kernel phase.
Trait Implementations§
Source§impl Clone for StreamPhase
impl Clone for StreamPhase
Source§fn clone(&self) -> StreamPhase
fn clone(&self) -> StreamPhase
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for StreamPhase
Source§impl Debug for StreamPhase
impl Debug for StreamPhase
impl Eq for StreamPhase
Source§impl PartialEq for StreamPhase
impl PartialEq for StreamPhase
Source§fn eq(&self, other: &StreamPhase) -> bool
fn eq(&self, other: &StreamPhase) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for StreamPhase
Auto Trait Implementations§
impl Freeze for StreamPhase
impl RefUnwindSafe for StreamPhase
impl Send for StreamPhase
impl Sync for StreamPhase
impl Unpin for StreamPhase
impl UnsafeUnpin for StreamPhase
impl UnwindSafe for StreamPhase
Blanket Implementations§
impl<T> Allocation for T
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