[][src]Type Definition futures::Poll

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.