pub trait NumberedGraph<'a>: Graph<'a>where
    <Self as Graph<'a>>::Node: NumberedNode,
    <Self as Graph<'a>>::Edge: NumberedEdge,
{ }
Expand description

Marker trait for graphs with directly numbered nodes and edges.

Implementors