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 BatchPlanRef

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

Source§

impl PhysicalPlanRef for StreamPlanRef

Source§

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