salvo_core 0.96.0

Salvo is a powerful web framework that can make your work easier.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Request parameter extractors.

#[cfg(feature = "cookie")]
mod cookie;
#[cfg(feature = "cookie")]
pub use cookie::CookieParam;
mod header;
pub use header::HeaderParam;
mod path;
pub use path::PathParam;
mod query;
pub use query::QueryParam;