//! Form Validation Constraints
pub use IsTrue;
pub use NotBlank;
pub use Callback;
pub use CharactersCallback;
pub use AllOf;
pub use AnyOf;
pub use Not;
pub use Integer;
pub use Number;
pub use Alphabetic;
pub use Alphanumeric;
use FormValue;
/// Trait that define validation constraints
///
/// see example `form-validation` for basic usage