pub trait BatchPlanRef: PhysicalPlanRef {
// Required method
fn order(&self) -> &Order;
}
Expand description
A subtrait of PhysicalPlanRef
for batch plans.
Due to the lack of refactoring, all plan nodes currently implement this trait
through super::PlanBase
. One may still use this trait as a bound for
accessing a batch plan, in contrast to GenericPlanRef
or
PhysicalPlanRef
.
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.
Implementations on Foreign Types§
Source§impl<'a, T: 'a + BatchPlanRef + ?Sized> BatchPlanRef for &'a Twhere
&'a T: PhysicalPlanRef,
impl<'a, T: 'a + BatchPlanRef + ?Sized> BatchPlanRef for &'a Twhere
&'a T: PhysicalPlanRef,
Implementors§
impl BatchPlanRef for PlanBaseRef<'_>
impl BatchPlanRef for PlanBase<Batch>
impl BatchPlanRef for PlanRef
Allow access to all fields defined in BatchPlanRef
for the type-erased plan node.