ci: update clippy version to 1.75 (#6273)

This commit is contained in:
Taiki Endo
2024-01-07 02:33:37 +09:00
committed by GitHub
parent 3275cfb638
commit 84c5674c60
30 changed files with 31 additions and 53 deletions
-1
View File
@@ -30,7 +30,6 @@ impl<R> SplitStream<R> {
}
/// Obtain a pinned reference to the inner `Split<R>`.
#[allow(clippy::wrong_self_convention)] // https://github.com/rust-lang/rust-clippy/issues/4546
pub fn as_pin_mut(self: Pin<&mut Self>) -> Pin<&mut Split<R>> {
self.project().inner
}