pub trait PhysicalPlanRef: GenericPlanRef {
// Required method
fn distribution(&self) -> &Distribution;
}
Required Methods§
fn distribution(&self) -> &Distribution
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 + 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.