This is needed when trying to use tower-sessions with this crate. tower-sessions requires Debug for the provided backend store. In my particular case the store looks like:
`diesel_async::sync_connection_wrapper::SyncConnectionWrapper<diesel::SqliteConnection>` doesn't implement `std::fmt::Debug`
the trait `std::fmt::Debug` is not implemented for `diesel_async::sync_connection_wrapper::SyncConnectionWrapper<diesel::SqliteConnection>`, which is required by `deadpool::managed::Pool<diesel_async::pooled_connection::AsyncDieselConnectionManager<diesel_async::sync_connection_wrapper::SyncConnectionWrapper<diesel::SqliteConnection>>>: std::fmt::Debug`
This is needed when trying to use tower-sessions with this crate.
tower-sessions
requiresDebug
for the provided backend store. In my particular case the store looks like:The error without this
Debug
impl is: