pub trait SqlAccess:
Send
+ Sync
+ 'static {
// Required methods
fn reader<'life0, 'async_trait>(
&'life0 self,
) -> Pin<Box<dyn Future<Output = StorageResult<Box<dyn SqlReader>>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
fn writer<'life0, 'async_trait>(
&'life0 self,
) -> Pin<Box<dyn Future<Output = StorageResult<Box<dyn SqlWriter>>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
fn begin_tx<'life0, 'async_trait>(
&'life0 self,
options: SqlTxOptions,
) -> Pin<Box<dyn Future<Output = StorageResult<Box<dyn SqlTransaction>>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
}Expand description
Base SQL access capability.