mirror of
https://github.com/fafhrd91/actix-net
synced 2025-04-17 13:07:55 +02:00
12 lines
183 B
Rust
12 lines
183 B
Rust
//! 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},
|
|
};
|