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