pub enum StreamingSource {
Scan(ScanSource),
Concat {
inputs: Vec<StreamingPhysicalPlan>,
schema: Option<SchemaRef>,
},
}Expand description
Physical plan compiler and plan node types. Streaming source tree preserving concat input order and child operators.
Variants§
Scan(ScanSource)
A single scan source with no nested stream boundary.
Concat
Strict vertical concat of independently compiled child streams.
Trait Implementations§
Source§impl Clone for StreamingSource
impl Clone for StreamingSource
Source§fn clone(&self) -> StreamingSource
fn clone(&self) -> StreamingSource
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 moreAuto Trait Implementations§
impl !RefUnwindSafe for StreamingSource
impl !UnwindSafe for StreamingSource
impl Freeze for StreamingSource
impl Send for StreamingSource
impl Sync for StreamingSource
impl Unpin for StreamingSource
impl UnsafeUnpin for StreamingSource
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