validator 0.12.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
16
#[cfg(feature = "card")]
pub mod cards;
pub mod contains;
pub mod email;
pub mod ip;
pub mod length;
pub mod must_match;
#[cfg(feature = "unic")]
pub mod non_control_character;
#[cfg(feature = "phone")]
pub mod phone;
pub mod range;
pub mod required;
pub mod urls;

pub use validator_types::Validator;