Trait PhysicalPlanRef

Source
pub trait PhysicalPlanRef: GenericPlanRef {
    // Required method
    fn distribution(&self) -> &Distribution;
}

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 + PhysicalPlanRef + ?Sized> PhysicalPlanRef for &'a T

Implementors§

Source§

impl PhysicalPlanRef for PlanBaseRef<'_>

Source§

impl PhysicalPlanRef for PlanRef

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

Source§

impl<C: ConventionMarker> PhysicalPlanRef for PlanBase<C>