pub trait PoolAdapter:
Send
+ Sync
+ 'static {
// Required methods
fn query_json<'life0, 'life1, 'async_trait>(
&'life0 self,
sql: &'life1 str,
) -> Pin<Box<dyn Future<Output = Result<Vec<Map<String, Value>>>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait;
fn pool_status(&self) -> PoolStatus;
}