Crate bb8_diesel

Crate bb8_diesel 

Source
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§

DieselConnection
An async-safe analogue of any connection that implements diesel::Connection.
DieselConnectionManager
A connection manager which implements bb8::ManageConnection to integrate with bb8.