Skip to main content

PlanEngine

Trait PlanEngine 

Source
pub trait PlanEngine {
    type Error: Error + Send + Sync + 'static;

    // Required method
    fn execute_plan(&mut self, plan: &Plan) -> Result<QueryResult, Self::Error>;
}
Expand description

Engine-facing API for consuming validated/deserialized Plexus plans.

Required Associated Types§

Source

type Error: Error + Send + Sync + 'static

Required Methods§

Source

fn execute_plan(&mut self, plan: &Plan) -> Result<QueryResult, Self::Error>

Execute a deserialized plan.

Implementors§