pub trait Chars { // Required method fn validate_num_chars(&self, min: usize, max: usize) -> Result<(), Error>; }