actix_utils/future/
mod.rs

1//! Helpers for constructing futures.
2
3mod either;
4mod poll_fn;
5mod ready;
6
7pub use self::either::Either;
8pub use self::poll_fn::{poll_fn, PollFn};
9pub use self::ready::{err, ok, ready, Ready};