Type Definition futures_core::Poll[][src]

type Poll<T, E> = Result<Async<T>, E>;

A convenience wrapper for Result<Async<T>, E>.

Poll is the return type of the poll method on the Future trait.