pub trait WordVisitor { // Required method fn visit(&mut self, word: &str, path: &Vec<u16>); }
The word visitor trait