2020-12-28 03:32:28 +00:00
|
|
|
//! Various network related services and utilities for the Actix ecosystem.
|
2020-08-18 23:27:37 +01:00
|
|
|
|
2020-12-12 23:24:00 +00:00
|
|
|
#![deny(rust_2018_idioms, nonstandard_style)]
|
2019-12-02 22:30:09 +06:00
|
|
|
#![allow(clippy::type_complexity)]
|
2020-12-12 23:24:00 +00:00
|
|
|
#![doc(html_logo_url = "https://actix.rs/img/logo.png")]
|
|
|
|
#![doc(html_favicon_url = "https://actix.rs/favicon.ico")]
|
2019-07-19 11:03:16 +06:00
|
|
|
|
2018-09-14 13:07:38 -07:00
|
|
|
pub mod counter;
|
2020-08-18 23:27:37 +01:00
|
|
|
pub mod dispatcher;
|
2019-11-14 18:38:24 +06:00
|
|
|
pub mod mpsc;
|
2021-02-28 21:11:16 +00:00
|
|
|
mod poll_fn;
|
2019-11-14 18:38:24 +06:00
|
|
|
pub mod task;
|
2018-10-23 21:38:36 -07:00
|
|
|
pub mod timeout;
|
2021-02-28 21:11:16 +00:00
|
|
|
|
|
|
|
use self::poll_fn::poll_fn;
|