Skip to content

Commit 1260dc2

Browse files
committed
add missing generic argument for `SyncConnectionWrapper struct while implementing PoolableConnection
1 parent 4206ed9 commit 1260dc2

File tree

1 file changed

+1
-1
lines changed
  • src/sync_connection_wrapper

1 file changed

+1
-1
lines changed

src/sync_connection_wrapper/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -436,7 +436,7 @@ mod implementation {
436436
feature = "mobc",
437437
feature = "r2d2"
438438
))]
439-
impl<C> crate::pooled_connection::PoolableConnection for SyncConnectionWrapper<C>
439+
impl<C, S> crate::pooled_connection::PoolableConnection for SyncConnectionWrapper<C, S>
440440
where
441441
Self: AsyncConnection,
442442
{

0 commit comments

Comments
 (0)