Expand description
bb8-diesel allows the bb8 asynchronous connection pool to be used underneath Diesel.
This is currently implemented against Diesel’s synchronous
API, with calls to tokio::task::spawn_blocking to safely
perform synchronous operations from an asynchronous task.
Structs§
- Diesel
Connection - An async-safe analogue of any connection that implements
diesel::Connection. - Diesel
Connection Manager - A connection manager which implements
bb8::ManageConnectionto integrate with bb8.