Skip to main content

ProjectQueryBulk

Trait ProjectQueryBulk 

Source
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.

Required Methods§

Source

fn iter_models(&self) -> Box<dyn Iterator<Item = (&Path, &SourceModel)> + '_>

Implementors§