3. Await: Future wrapper
| 78 | |
| 79 | /// 3. Await: Future wrapper |
| 80 | pub struct Awaitable<T> { |
| 81 | receiver: oneshot::Receiver<T>, |
| 82 | } |
| 83 | |
| 84 | impl<T> Future for Awaitable<T> { |
| 85 | type Output = Result<T>; |
nothing calls this directly
no outgoing calls
no test coverage detected