Skip to main content

actix_utils/future/
mod.rs

1//! Helpers for constructing futures.
2
3mod either;
4mod poll_fn;
5mod ready;
6
7#[allow(deprecated)]
8pub use self::ready::{err, ok, ready, Ready};
9pub use self::{
10    either::Either,
11    poll_fn::{poll_fn, PollFn},
12};