garde-actix-web 0.2.0

Actix-web garde wrapper
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Drop in types for actix web implementing garde
mod either;
mod form;
mod header;
mod json;
mod path;
#[cfg(feature = "serde_qs")]
mod qs_query;
mod query;

pub use either::Either;
pub use form::{Form, FormConfig};
pub use header::Header;
pub use json::{Json, JsonConfig};
pub use path::{Path, PathConfig};
#[cfg(feature = "serde_qs")]
pub use qs_query::{QsQuery, QsQueryConfig};
pub use query::{Query, QueryConfig};