Docs.rs
ra-ap-rustc_data_structures-0.28.0
ra-ap-rustc_data_structures 0.28.0
Docs.rs crate page
MIT / Apache-2.0
Links
Repository
crates.io
Source
Owners
Veykril
Dependencies
arrayvec ^0.7
normal
bitflags ^2.4.1
normal
elsa =1.7.1
normal
ena ^0.14.2
normal
indexmap ^2.0.0
normal
itertools ^0.11
normal
jobserver ^0.1.27
normal
libc ^0.2
normal
measureme ^10.0.0
normal
parking_lot ^0.12
normal
rustc-hash ^1.1.0
normal
rustc-rayon ^0.5.0
normal
rustc-rayon-core ^0.5.0
normal
ra-ap-rustc_arena ^0.28.0
normal
ra-ap-rustc_graphviz ^0.28.0
normal
ra-ap-rustc_index ^0.28.0
normal
ra-ap-rustc_macros ^0.28.0
normal
ra-ap-rustc_serialize ^0.28.0
normal
smallvec ^1.8.1
normal
stacker ^0.1.15
normal
tempfile ^3.2
normal
thin-vec ^0.2.12
normal
tracing ^0.1
normal
portable-atomic ^1.5.1
normal
memmap2 ^0.2.1
normal
windows ^0.48.0
normal
Versions
30.22%
of the crate is documented
Platform
i686-unknown-linux-gnu
x86_64-unknown-linux-gnu
Feature flags
Rust
About docs.rs
Privacy policy
Rust website
The Book
Standard Library API Reference
Rust by Example
The Cargo Guide
Clippy Documentation
ra_ap_rustc_data_structures
0.28.0
GraphSuccessors
Required Associated Types
Item
Iter
Implementations on Foreign Types
&'graph G
Implementors
In ra_ap_rustc_data_structures::graph
?
Trait
ra_ap_rustc_data_structures
::
graph
::
GraphSuccessors
source
·
[
−
]
pub trait GraphSuccessors<'graph> { type
Item
; type
Iter
:
Iterator
<Item = Self::
Item
>; }
Required Associated Types
§
source
type
Item
source
type
Iter
:
Iterator
<Item = Self::
Item
>
Implementations on Foreign Types
§
source
§
impl<'iter, 'graph, G:
WithSuccessors
>
GraphSuccessors
<'iter> for
&'graph G
§
type
Item
= <G as
DirectedGraph
>::
Node
§
type
Iter
= <G as
GraphSuccessors
<'iter>>::
Iter
Implementors
§
source
§
impl<'graph, N:
Idx
>
GraphSuccessors
<'graph> for
VecGraph
<N>
§
type
Item
= N
§
type
Iter
=
Cloned
<
Iter
<'graph, N>>
source
§
impl<'graph, N:
Idx
, S:
Idx
>
GraphSuccessors
<'graph> for
Sccs
<N, S>
§
type
Item
= S
§
type
Iter
=
Cloned
<
Iter
<'graph, S>>