Skip to main content

OperandContext

Trait OperandContext 

Source
pub trait OperandContext<O: Operand>:
    PlanNode
    + OptimizePlan<Output = O>
    + Explain
    + EvaluateContext<Operand = O>
    + Estimated
    + Send
    + Sync { }

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§

Source§

impl<O, C> OperandContext<O> for C
where O: Operand, C: PlanNode + OptimizePlan<Output = O> + Explain + EvaluateContext<Operand = O> + Estimated + Send + Sync,