ICategory

Trait ICategory 

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

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§