1
0
mirror of https://github.com/fafhrd91/actix-web synced 2025-02-20 03:14:21 +01:00

21 lines
534 B
Rust
Raw Normal View History

//! Common extractors and responders.
2019-03-16 21:43:48 -07:00
// TODO: review visibility
2020-11-20 18:02:41 +00:00
mod either;
2019-03-17 00:48:40 -07:00
pub(crate) mod form;
mod header;
2019-03-16 22:04:09 -07:00
pub(crate) mod json;
2019-03-16 21:43:48 -07:00
mod path;
2019-03-17 00:48:40 -07:00
pub(crate) mod payload;
2019-03-16 21:43:48 -07:00
mod query;
2019-03-17 00:48:40 -07:00
pub(crate) mod readlines;
2019-03-16 21:43:48 -07:00
2020-11-20 18:02:41 +00:00
pub use self::either::{Either, EitherExtractError};
2019-03-16 21:43:48 -07:00
pub use self::form::{Form, FormConfig};
pub use self::header::Header;
2019-03-16 21:43:48 -07:00
pub use self::json::{Json, 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;