logo
pub trait GraphEdgesKindGetterInterface: GraphNodesNominalInterface + GraphEdgesNominalInterface {
    type EdgeKind: EdgeKindInterface;

    fn node_kind(
        &self,
        node_id: <Self::EdgeHandle as HasId>::Id
    ) -> Self::EdgeKind; }
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