webforms/lib.rs
1//! A crate for deriving multiple form helper traits useful when working with web forms.
2//!
3//! Currently impleted traits:
4//! * `ValidateForm` - Checks each annotated field for requirement list in the field attributes.
5//! * `HtmlForm` - Produces valid html input fields for each field in a form
6//!
7//! See each module for examples
8//!
9//! # Features
10//! * `validate` - Enables the ValidateForm trait and derive macro
11//! * `html` - Enables the HtmlForm trait and derive macro
12
13#[cfg(feature = "validate")]
14pub mod validate;