pub type Pool<C> = Pool<AsyncDieselConnectionManager<C>>;
Available on crate features
pool
and deadpool
only.Expand description
Type alias for using deadpool::managed::Pool
with [diesel-async
]
This is not equal to deadpool::managed::Pool
. It already uses the correct
connection manager and expects only the connection type as generic argument
Aliased Typeยง
struct Pool<C> { /* private fields */ }