commands: fix clippy warnings about confusing elided lifetimes

This commit is contained in:
2025-10-12 22:59:50 +09:00
parent 6d9e9cd468
commit 29f4e0519e
130 changed files with 131 additions and 131 deletions
@@ -20,7 +20,7 @@ impl Command for BinaryLimit {
fn parse_response(
parts: ResponseAttributes<'_>,
) -> Result<Self::Response, ResponseParserError> {
) -> Result<Self::Response, ResponseParserError<'_>> {
debug_assert!(parts.is_empty());
Ok(())
}