pub trait NumberedGraph: Graphwhere
    for<'a> <Self as GraphType>::Node<'a>: Indexable,
    for<'a> <Self as GraphType>::Edge<'a>: Indexable,{ }
Expand description

Marker trait for graphs with directly numbered nodes and edges.

Implementors§

source§

impl<G> NumberedGraph for Gwhere G: Graph, for<'a> G::Node<'a>: Indexable, for<'a> G::Edge<'a>: Indexable,