pub trait IndexService: Send + Sync {
// Required methods
fn refresh(&self) -> Result<(), String>;
fn is_running(&self) -> bool;
}Expand description
Background indexing with progress reporting.
Required Methods§
Sourcefn is_running(&self) -> bool
fn is_running(&self) -> bool
Check if indexing is currently in progress.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".