pub trait ProjectQueryBulk: ProjectQuery {
// Required method
fn iter_models(
&self,
) -> Box<dyn Iterator<Item = (&Path, &SourceModel)> + '_>;
}Expand description
Bulk access for in-process plugins. WASM plugins cannot reach this trait —
they’re stuck with point queries from ProjectQuery.