1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-05-20 01:08:10 +00:00
actix-web/actix-web/src/types/mod.rs

20 lines
463 B
Rust
Raw Normal View History

//! Common extractors and responders.
2019-03-17 04:43:48 +00:00
2020-11-20 18:02:41 +00:00
mod either;
2022-01-03 13:17:57 +00:00
mod form;
mod header;
2022-01-03 13:17:57 +00:00
mod json;
2019-03-17 04:43:48 +00:00
mod path;
2022-01-03 13:17:57 +00:00
mod payload;
2019-03-17 04:43:48 +00:00
mod query;
2022-01-03 13:17:57 +00:00
mod readlines;
2019-03-17 04:43:48 +00:00
2022-01-03 13:17:57 +00:00
pub use self::either::Either;
pub use self::form::{Form, FormConfig, UrlEncoded};
pub use self::header::Header;
2022-01-03 13:17:57 +00:00
pub use self::json::{Json, JsonBody, 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;