pub trait Connect {
type Pool: SCDatabase;
fn connect<'async_trait>(
self
) -> Pin<Box<dyn Future<Output = DBResult<Self::Pool>> + Send + 'async_trait>>
where
Self: 'async_trait;
}
Expand description
Create databse connection
Required Associated Types§
sourcetype Pool: SCDatabase
type Pool: SCDatabase
database specific pool-type