pub trait ICategory {
    // Required method
    fn nodes(&self, store: &impl NodeStore) -> &[NodeId];
}

Required Methods§

source

fn nodes(&self, store: &impl NodeStore) -> &[NodeId]

Return nodes in the category.

Implementors§