pub trait Tokenizer { // Required method fn tokenize(&self, bytes: &[u8]) -> Result<Vec<String>, Error>; }
Tokenizer is a trait that can tokenize bytes into a Vec of tokens
Vec
Tokenize the given bytes