Trait USizeValidator

Source
pub trait USizeValidator {
    // Required methods
    fn be_larger_than(self, limit: usize) -> ValidationResult<usize>;
    fn be_smaller_than(self, limit: usize) -> ValidationResult<usize>;
}

Required Methods§

Implementors§