(mut self: Pin<&mut Self>, cx: &mut Context<'_>)
| 72 | type Output = T; |
| 73 | |
| 74 | fn poll(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> { |
| 75 | self.0.poll_unpin(cx) |
| 76 | } |
| 77 | } |
| 78 | |
| 79 | /// Wraps a tokio `JoinHandle` that has never been cancelled. |
no outgoing calls
no test coverage detected