validator 0.20.0

Common validation functions (email, url, length, ...) and trait - to be used with `validator_derive`
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#[cfg(feature = "card")]
pub mod cards;
pub mod contains;
pub mod does_not_contain;
pub mod email;
pub mod ip;
pub mod length;
pub mod must_match;
// pub mod nested;
#[cfg(feature = "unic")]
pub mod non_control_character;
pub mod range;
pub mod regex;
pub mod required;
pub mod urls;