[JoinSet::join_next](tokio::task::JoinSet::join_next) - Await the next completed task.
(&mut self)
| 116 | |
| 117 | /// [JoinSet::join_next](tokio::task::JoinSet::join_next) - Await the next completed task. |
| 118 | pub async fn join_next(&mut self) -> Option<Result<T, JoinError>> { |
| 119 | self.inner.join_next().await |
| 120 | } |
| 121 | |
| 122 | /// [JoinSet::try_join_next](tokio::task::JoinSet::try_join_next) - Try to join the next completed task. |
| 123 | pub fn try_join_next(&mut self) -> Option<Result<T, JoinError>> { |
no outgoing calls