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".
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 BatchPlanRef
Allow access to all fields defined in PhysicalPlanRef for the type-erased plan node.