Crate futures_await[][src]

Runtime support for the async/await syntax for futures.

This crate serves as a masquerade over the futures crate itself, reexporting all of its contents. It's intended that you'll do:

extern crate futures_await as futures;

This crate adds a prelude module which contains various traits as well as the async and await macros you'll likely want to use.

See the crates's README for more information about usage.

Re-exports

pub use futures::*;

Modules

prelude

Macros

task_local

A macro to create a static of type LocalKey

try_ready

A macro for extracting the successful type of a Poll<T, E>.