pub struct PhysicalPlan {
pub operator: Box<dyn Operator>,
pub columns: Vec<String>,
}Expand description
A physical plan ready for execution.
Fields§
§operator: Box<dyn Operator>The root physical operator.
columns: Vec<String>Column names for the result.
Implementations§
Source§impl PhysicalPlan
impl PhysicalPlan
Auto Trait Implementations§
impl Freeze for PhysicalPlan
impl !RefUnwindSafe for PhysicalPlan
impl Send for PhysicalPlan
impl Sync for PhysicalPlan
impl Unpin for PhysicalPlan
impl !UnwindSafe for PhysicalPlan
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