pub trait TokenizerClone: Send + Sync { // Required methods fn tokenize(&self, text: &str) -> Vec<Token>; fn clone_box(&self) -> BoxedTokenizer; }