pub struct Executor;Expand description
Physical plan executor.
Executes PhysicalPlan trees and returns the resulting RecordBatch output.
Implementations§
Source§impl Executor
impl Executor
Sourcepub fn execute(plan: PhysicalPlan) -> Result<Vec<RecordBatch>>
pub fn execute(plan: PhysicalPlan) -> Result<Vec<RecordBatch>>
Execute a physical plan and return the resulting record batches.
Auto Trait Implementations§
impl Freeze for Executor
impl RefUnwindSafe for Executor
impl Send for Executor
impl Sync for Executor
impl Unpin for Executor
impl UnwindSafe for Executor
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