Joins the task and unwinds the panic if it happens.
(mut self)
| 69 | |
| 70 | /// Joins the task and unwinds the panic if it happens. |
| 71 | pub async fn join_unwind(mut self) -> Result<R, JoinError> { |
| 72 | self.join_unwind_mut().await |
| 73 | } |
| 74 | |
| 75 | /// Joins the task using a mutable reference and unwinds the panic if it happens. |
| 76 | /// |
no test coverage detected