logo
pub trait GraphNodesKindGetterInterface: GraphNodesNominalInterface {
    type NodeKind: NodeKindInterface;

    fn node_kind(
        &self,
        node_id: <Self::NodeHandle as HasId>::Id
    ) -> Self::NodeKind; }
Expand description

Graph nodes of which has a kind.

Required Associated Types

Enumerate kinds of the node.

Required Methods

Get kind of the node.

Implementors