pub trait Countable { // Required method fn count_chars(&self) -> usize; }
Trait for counting the number of chars