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 594c417 commit 291cebeCopy full SHA for 291cebe
msim/src/sim/task/join_set.rs
@@ -96,7 +96,7 @@ impl<T: 'static> JoinSet<T> {
96
std::mem::swap(&mut new_inner, &mut self.inner);
97
}
98
99
- fn poll_join_next(&mut self, cx: &mut Context<'_>) -> Poll<Option<Result<T, JoinError>>> {
+ pub fn poll_join_next(&mut self, cx: &mut Context<'_>) -> Poll<Option<Result<T, JoinError>>> {
100
let pinned = Pin::new(&mut self.inner);
101
pinned.poll_next(cx)
102
0 commit comments