pub type DiGraph<N, E, Ix = u32> = Graph<N, E, Directed, Ix>;Expand description
A Graph with directed edges.
For example, an edge from 1 to 2 is distinct from an edge from 2 to 1.
Aliased Typeยง
pub struct DiGraph<N, E, Ix = u32> { /* private fields */ }