actix_utils/future/
mod.rs

1
2
3
4
5
6
7
8
9
10
11
//! Helpers for constructing futures.

mod either;
mod poll_fn;
mod ready;

pub use self::{
    either::Either,
    poll_fn::{poll_fn, PollFn},
    ready::{err, ok, ready, Ready},
};