pub trait Tagger { // Required method fn tag_sentence(&self, sentence: &[String]) -> Vec<Option<UPOS>>; }
An implementer of this trait is capable of assigned Part-of-Speech tags to a provided sentence.