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 f418030 commit 5d6ba66Copy full SHA for 5d6ba66
ipc/src/select_with_weak.rs
@@ -81,7 +81,7 @@ where
81
checked_strong = true;
82
} else {
83
this.use_strong = true;
84
- match Pin::new(&mut this.strong).poll_next(cx) {
+ match Pin::new(&mut this.weak).poll_next(cx) {
85
Poll::Ready(Some(item)) => return Poll::Ready(Some(item)),
86
Poll::Ready(None) | Poll::Pending => (),
87
}
0 commit comments