Module futures_util::try_future

source ·
Expand description

Futures

This module contains a number of functions for working with Futures, including the FutureExt trait which adds methods to Future types.

Structs§

Traits§

Functions§

  • Creates a new future which will select the first successful future over a list of futures.
  • Joins the result of two futures, waiting for them both to complete or for one to produce an error.
  • Same as try_join, but with more futures.
  • Same as try_join, but with more futures.
  • Same as try_join, but with more futures.
  • Creates a future which represents either a collection of the results of the futures given or an error.