[][src]Module futures_core::future

Futures.

Structs

FutureObj [
Experimental
]

A custom trait object for polling futures, roughly akin to Box<dyn Future<Output = T> + Send + 'a>.

LocalFutureObj [
Experimental
]

A custom trait object for polling futures, roughly akin to Box<dyn Future<Output = T> + 'a>.

Traits

Future [
Experimental
]

A future represents an asychronous computation.

TryFuture

A convenience for futures that return Result values that includes a variety of adapters tailored to such futures.

UnsafeFutureObj [
Experimental
]

A custom implementation of a future trait object for FutureObj, providing a hand-rolled vtable.