valida 1.1.2

Modular validation system for Rust with support for nested structures and localization.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
pub trait PrimitiveRule {}

impl PrimitiveRule for String {}
impl PrimitiveRule for &str {}
impl PrimitiveRule for i32 {}
impl PrimitiveRule for i64 {}
impl PrimitiveRule for u32 {}
impl PrimitiveRule for u64 {}
impl PrimitiveRule for f32 {}
impl PrimitiveRule for f64 {}
impl PrimitiveRule for bool {}
impl PrimitiveRule for char {}