QueryExecutor

Trait QueryExecutor 

Source
pub trait QueryExecutor: Send + Sync {
    // Required method
    fn execute<'life0, 'async_trait>(
        &'life0 self,
        plan: PhysicalPlan,
    ) -> Pin<Box<dyn Future<Output = Result<Vec<Value>, Box<dyn Error + Send + Sync>>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait;
}

Required Methods§

Source

fn execute<'life0, 'async_trait>( &'life0 self, plan: PhysicalPlan, ) -> Pin<Box<dyn Future<Output = Result<Vec<Value>, Box<dyn Error + Send + Sync>>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Implementors§