pub trait PhysicalPlanRef: GenericPlanRef {
// Required method
fn distribution(&self) -> &Distribution;
}
Required Methods§
fn distribution(&self) -> &Distribution
Object Safety§
This trait is not object safe.
Implementations on Foreign Types§
source§impl<'a, T: 'a + PhysicalPlanRef + ?Sized> PhysicalPlanRef for &'a Twhere
&'a T: GenericPlanRef,
impl<'a, T: 'a + PhysicalPlanRef + ?Sized> PhysicalPlanRef for &'a Twhere
&'a T: GenericPlanRef,
fn distribution(&self) -> &Distribution
Implementors§
impl PhysicalPlanRef for PlanBaseRef<'_>
impl PhysicalPlanRef for PlanRef
Allow access to all fields defined in PhysicalPlanRef
for the type-erased plan node.