pub trait QueryPreprocessor: Send + Sync {
// Required methods
fn preprocess(&self, query: &str) -> Result<Vec<String>>;
fn name(&self) -> &str;
}Expand description
A query preprocessor that transforms or expands queries before retrieval.