☰
Trait GraphSuccessors
Associated Types
Item
Iter
Implementations on Foreign Types
&'graph G
Implementors
Other items in
rustc_data_structures
::
graph
All crates
?
Trait
rustc_data_structures
::
graph
::
GraphSuccessors
[
−
]
[src]
pub trait GraphSuccessors<'graph> { type
Item
; type
Iter
:
Iterator
<Item = Self::
Item
>; }
Associated Types
[src]
type
Item
[src]
type
Iter
:
Iterator
<Item = Self::
Item
>
Implementations on Foreign Types
[src]
impl<'iter, 'graph, G:
WithSuccessors
>
GraphSuccessors
<'iter> for
&'graph
G
type
Item
= G::
Node
type
Iter
= <G as
GraphSuccessors
<'iter>>::
Iter
Implementors
[src]
impl<N:
Idx
, 'graph>
GraphSuccessors
<'graph> for
VecGraph
<N>
type
Item
= N
type
Iter
=
Cloned
<
Iter
<'graph, N>>
[src]
impl<N:
Idx
, S:
Idx
, 'graph>
GraphSuccessors
<'graph> for
Sccs
<N, S>
type
Item
= S
type
Iter
=
Cloned
<
Iter
<'graph, S>>