Valid8
A simple validation library.
Example
Use the validators to validate values.
use Validator;
use Min;
let validator = new;
let invalid = "1234";
assert!;
let valid = "12345";
assert!;
Use the derive(Validate) macro to generate validation code for structs.