Skip to content

Commit 58b1e6b

Browse files
committed
Apply suggestions from clippy 1.83
1 parent 8368ba1 commit 58b1e6b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

bb8/src/api.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -439,7 +439,7 @@ where
439439
}
440440
}
441441

442-
impl<'a, M> Deref for PooledConnection<'a, M>
442+
impl<M> Deref for PooledConnection<'_, M>
443443
where
444444
M: ManageConnection,
445445
{
@@ -450,7 +450,7 @@ where
450450
}
451451
}
452452

453-
impl<'a, M> DerefMut for PooledConnection<'a, M>
453+
impl<M> DerefMut for PooledConnection<'_, M>
454454
where
455455
M: ManageConnection,
456456
{
@@ -459,7 +459,7 @@ where
459459
}
460460
}
461461

462-
impl<'a, M> fmt::Debug for PooledConnection<'a, M>
462+
impl<M> fmt::Debug for PooledConnection<'_, M>
463463
where
464464
M: ManageConnection,
465465
M::Connection: fmt::Debug,
@@ -469,7 +469,7 @@ where
469469
}
470470
}
471471

472-
impl<'a, M> Drop for PooledConnection<'a, M>
472+
impl<M> Drop for PooledConnection<'_, M>
473473
where
474474
M: ManageConnection,
475475
{

0 commit comments

Comments
 (0)