[]Trait rustc_ap_rustc_data_structures::graph::DirectedGraph

pub trait DirectedGraph {
    type Node: Idx;
}

Associated Types

type Node: Idx

Loading content...

Implementations on Foreign Types

impl<'graph, G: DirectedGraph> DirectedGraph for &'graph G

type Node = G::Node

Loading content...

Implementors

impl<N: Idx> DirectedGraph for VecGraph<N>

type Node = N

impl<N: Idx, S: Idx> DirectedGraph for Sccs<N, S>

type Node = S

Loading content...