actix-web 0.2.1

Actix web framework
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! The `actix-web` prelude for library developers
//!
//! The purpose of this module is to alleviate imports of many common actix traits
//! by adding a glob import to the top of actix heavy modules:
//!
//! ```
//! # #![allow(unused_imports)]
//! use actix_web::dev::*;
//! ```

pub use super::*;

// dev specific
pub use task::Task;
pub use recognizer::RouteRecognizer;