Trait GenericPlanRef

Source
pub trait GenericPlanRef: Eq + Hash {
    // Required methods
    fn id(&self) -> PlanNodeId;
    fn schema(&self) -> &Schema;
    fn stream_key(&self) -> Option<&[usize]>;
    fn functional_dependency(&self) -> &FunctionalDependencySet;
    fn ctx(&self) -> OptimizerContextRef;
}

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 + GenericPlanRef + ?Sized> GenericPlanRef for &'a T
where &'a T: Eq + Hash,

Implementors§

Source§

impl GenericPlanRef for PlanBaseRef<'_>

Source§

impl GenericPlanRef for PlanRef

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

Source§

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