Trait ShareNode

Source
pub trait ShareNode<C: ConventionMarker>:
    AnyPlanNodeMeta<C>
    + PlanTreeNodeUnary<C>
    + 'static {
    // Required methods
    fn new_share(share: Share<PlanRef<C>>) -> PlanRef<C>;
    fn replace_input(&self, plan: PlanRef<C>);
}

Required Methods§

Source

fn new_share(share: Share<PlanRef<C>>) -> PlanRef<C>

Source

fn replace_input(&self, plan: PlanRef<C>)

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.

Implementors§