chore: clippy elided lifetimes

This commit is contained in:
skoupidi
2024-09-17 16:56:38 +03:00
parent 19eb32f29b
commit 82520041eb
9 changed files with 10 additions and 10 deletions

View File

@@ -66,7 +66,7 @@ impl RequestHandler for RpcSrv {
}
}
async fn connections_mut(&self) -> MutexGuard<'_, HashSet<StoppableTaskPtr>> {
async fn connections_mut(&self) -> MutexGuard<'life0, HashSet<StoppableTaskPtr>> {
self.rpc_connections.lock().await
}
}