Skip to content

Commit

Permalink
Apply suggestions from clippy 1.83
Browse files Browse the repository at this point in the history
  • Loading branch information
djc committed Nov 29, 2024
1 parent 8368ba1 commit 58b1e6b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions bb8/src/api.rs
Original file line number Diff line number Diff line change
Expand Up @@ -439,7 +439,7 @@ where
}
}

impl<'a, M> Deref for PooledConnection<'a, M>
impl<M> Deref for PooledConnection<'_, M>
where
M: ManageConnection,
{
Expand All @@ -450,7 +450,7 @@ where
}
}

impl<'a, M> DerefMut for PooledConnection<'a, M>
impl<M> DerefMut for PooledConnection<'_, M>
where
M: ManageConnection,
{
Expand All @@ -459,7 +459,7 @@ where
}
}

impl<'a, M> fmt::Debug for PooledConnection<'a, M>
impl<M> fmt::Debug for PooledConnection<'_, M>
where
M: ManageConnection,
M::Connection: fmt::Debug,
Expand All @@ -469,7 +469,7 @@ where
}
}

impl<'a, M> Drop for PooledConnection<'a, M>
impl<M> Drop for PooledConnection<'_, M>
where
M: ManageConnection,
{
Expand Down

0 comments on commit 58b1e6b

Please sign in to comment.