pub trait PathSource {
// Required methods
fn find_like(&self, query: &str) -> Option<Vec<PathEntry>>;
fn all_files(&self) -> Option<Vec<PathEntry>>;
}Expand description
Source of indexed file paths (e.g., from a database index).
pub trait PathSource {
// Required methods
fn find_like(&self, query: &str) -> Option<Vec<PathEntry>>;
fn all_files(&self) -> Option<Vec<PathEntry>>;
}Source of indexed file paths (e.g., from a database index).