Trait BatchPlanRef

Source
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§

Source

fn order(&self) -> &Order

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 T

Source§

fn order(&self) -> &Order

Implementors§

Source§

impl BatchPlanRef for PlanBaseRef<'_>

Source§

impl BatchPlanRef for PlanBase<Batch>

Source§

impl BatchPlanRef for PlanRef

Allow access to all fields defined in BatchPlanRef for the type-erased plan node.