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

Marker trait for digraphs with directly numbered nodes and edges.

Implementors§

source§

impl<G> NumberedDigraph for Gwhere G: Digraph + NumberedGraph, for<'a> G::Node<'a>: Indexable, for<'a> G::Edge<'a>: Indexable,