1
0
mirror of https://github.com/fafhrd91/actix-web synced 2025-02-17 18:23:30 +01:00

20 lines
463 B
Rust
Raw Normal View History

//! Common extractors and responders.
2019-03-16 21:43:48 -07: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-16 21:43:48 -07:00
mod path;
2022-01-03 13:17:57 +00:00
mod payload;
2019-03-16 21:43:48 -07:00
mod query;
2022-01-03 13:17:57 +00:00
mod readlines;
2019-03-16 21:43:48 -07: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-16 21:43:48 -07:00
pub use self::payload::{Payload, PayloadConfig};
pub use self::query::{Query, QueryConfig};
2019-11-26 11:25:50 +06:00
pub use self::readlines::Readlines;