1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-06-02 13:29:24 +00:00
actix-web/src/types/mod.rs

19 lines
492 B
Rust
Raw Normal View History

//! Common extractors and responders.
2019-03-17 04:43:48 +00:00
// TODO: review visibility
2020-11-20 18:02:41 +00:00
mod either;
2019-03-17 07:48:40 +00:00
pub(crate) mod form;
2019-03-17 05:04:09 +00:00
pub(crate) mod json;
2019-03-17 04:43:48 +00:00
mod path;
2019-03-17 07:48:40 +00:00
pub(crate) mod payload;
2019-03-17 04:43:48 +00:00
mod query;
2019-03-17 07:48:40 +00:00
pub(crate) mod readlines;
2019-03-17 04:43:48 +00:00
2020-11-20 18:02:41 +00:00
pub use self::either::{Either, EitherExtractError};
2019-03-17 04:43:48 +00:00
pub use self::form::{Form, FormConfig};
pub use self::json::{Json, JsonConfig};
pub use self::path::{Path, PathConfig};
2019-03-17 04:43:48 +00:00
pub use self::payload::{Payload, PayloadConfig};
pub use self::query::{Query, QueryConfig};
2019-11-26 05:25:50 +00:00
pub use self::readlines::Readlines;