[][src]Trait rustc_ap_rustc_data_structures::graph::GraphSuccessors

pub trait GraphSuccessors<'graph> {
    type Item;
    type Iter: Iterator<Item = Self::Item>;
}

Associated Types

type Item

type Iter: Iterator<Item = Self::Item>

Loading content...

Implementations on Foreign Types

impl<'iter, 'graph, G: WithSuccessors> GraphSuccessors<'iter> for &'graph G[src]

type Item = G::Node

type Iter = <G as GraphSuccessors<'iter>>::Iter

Loading content...

Implementors

impl<'graph, N: Idx> GraphSuccessors<'graph> for VecGraph<N>[src]

type Item = N

type Iter = Cloned<Iter<'graph, N>>

impl<'graph, N: Idx, S: Idx> GraphSuccessors<'graph> for Sccs<N, S>[src]

type Item = S

type Iter = Cloned<Iter<'graph, S>>

Loading content...