pub trait FieldProcessor { // Required method fn process(&self, term: &str) -> Option<Query>; }
A FieldProcessor can be used to customize the handling of query fields
FieldProcessor
Decide whether this document should be included in the MSet
MSet