abortable.rs |
|
745 |
either.rs |
#[pin] |
9428 |
future |
|
|
join.rs |
|
5494 |
join_all.rs |
Definition of the `JoinAll` combinator, waiting for all of a list of futures
to finish. |
4968 |
lazy.rs |
|
1353 |
maybe_done.rs |
Definition of the MaybeDone combinator |
3170 |
mod.rs |
Asynchronous values.
This module contains:
- The [`Future`] trait.
- The [`FutureExt`] and [`TryFutureExt`] trait, which provides adapters for
chaining and composing futures.
- Top-level future combinators like [`lazy`](lazy()) which creates a future
from a closure that defines its return value, and [`ready`](ready()),
which constructs a future with an immediate defined value. |
3488 |
option.rs |
Definition of the `Option` (optional step) combinator |
1662 |
pending.rs |
|
1233 |
poll_fn.rs |
Definition of the `PollFn` adapter combinator |
1389 |
poll_immediate.rs |
|
4021 |
ready.rs |
|
1836 |
select.rs |
|
4000 |
select_all.rs |
|
2469 |
select_ok.rs |
|
3063 |
try_future |
|
|
try_join.rs |
|
7444 |
try_join_all.rs |
Definition of the `TryJoinAll` combinator, waiting for all of a list of
futures to finish with either success or error. |
6156 |
try_maybe_done.rs |
Definition of the TryMaybeDone combinator |
3089 |
try_select.rs |
|
3209 |