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