We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 60e5088 commit 2ed92acCopy full SHA for 2ed92ac
src/proto/h2/client.rs
@@ -722,6 +722,9 @@ where
722
}
723
724
Poll::Pending => match ready!(Pin::new(&mut self.conn_eof).poll(cx)) {
725
+ // As of Rust 1.82, this pattern is no longer needed, and emits a waring.
726
+ // But we cannot remove it as long as MSRV is less than that.
727
+ #[allow(unused)]
728
Ok(never) => match never {},
729
Err(_conn_is_eof) => {
730
trace!("connection task is closed, closing dispatch task");
0 commit comments