Crate actix_validated_forms[][src]

Validated HTTP forms and query extractors for the Actix-Web framework using the validator crate for struct validation.

Also adds an easy to use HTTP multipart form extractor (with validation) that generates temporary files on disk using the tempfile crate with similar behaviour to the php $_FILES variable in php

Re-exports

pub use tempfile;
pub use validator;

Modules

error
form

Validated extractor for an application/x-www-form-urlencoded HTTP request body

multipart

Validated extractor for a multipart/form-data HTTP request body

query

Validated extractor for a Url Encoded HTTP Query String