pub trait TableDualSourceQueryExecutor {
// Required methods
fn query_table_count<'life0, 'async_trait>(
&'life0 self,
input: QueryTableCountInput,
) -> Pin<Box<dyn Future<Output = (Result<i64>, Result<i64>)> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
fn query_hash_data<'life0, 'async_trait>(
&'life0 self,
input: QueryHashDataInput,
) -> Pin<Box<dyn Future<Output = (String, String)> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
}
Expand description
This trait defines the methods for executing queries on a dual source table.