pub trait TableProvider<P>where P: Pager<Blob = EntryHandle> + Send + Sync,{ // Required method fn get_table( &self, canonical_name: &str, ) -> Result<Arc<ExecutorTable<P>>, Error>; }
Trait for providing table access to the executor.