pub trait FileContentProvider: Send + Sync {
// Required method
fn read_to_string(&self, path: &Path) -> Result<Arc<String>>;
// Provided methods
fn invalidate(&self, _path: &Path) { ... }
fn clear(&self) { ... }
}Expand description
Provides file contents for features that need full-text context.