[−][src]Module async_std::future
Asynchronous values.
Macros
| join | unstableAwaits multiple futures simultaneously, returning all results once complete. |
| select | unstableWaits for either one of several similarly-typed futures to complete. |
| try_join | unstableAwaits multiple fallible futures simultaneously, returning all results once complete. |
| try_select | unstableWaits for either one of several similarly-typed futures to complete. |
Structs
| TimeoutError | unstableAn error returned when a future times out. |
Traits
| Future | A future represents an asynchronous computation. |
Functions
| pending | Never resolves to a value. |
| poll_fn | Creates a new future wrapping around a function returning |
| ready | Resolves to the provided value. |
| timeout | unstableAwaits a future or times out after a duration of time. |