pub trait LookupExecutorBuilder: Send {
// Required methods
fn reset(&mut self);
fn add_scan_range<'life0, 'async_trait>(
&'life0 mut self,
key_datums: Vec<Datum>,
) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
fn build_executor<'life0, 'async_trait>(
&'life0 mut self,
) -> Pin<Box<dyn Future<Output = Result<BoxedExecutor>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
}
Expand description
Used to build the executor for the inner side