Skip to main content

NumberedDigraph

Trait NumberedDigraph 

Source
pub trait NumberedDigraph: NumberedGraph + Digraph
where 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.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§

Source§

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