Docs.rs
aigraph1-0.1.0
aigraph1 0.1.0
Docs.rs crate page
MIT
Links
Repository
crates.io
Source
Owners
AOx0
Dependencies
anyhow ^1.0.69
normal
fixedbitset ^0.4.2
normal
num ^0.4.0
normal
petgraph ^0.6.3
normal
text_io ^0.1.12
normal
unicase ^2.6.0
normal
criterion ^0.4.0
dev
Versions
15.38%
of the crate is documented
Platform
i686-pc-windows-msvc
i686-unknown-linux-gnu
x86_64-apple-darwin
x86_64-pc-windows-msvc
x86_64-unknown-linux-gnu
Feature flags
docs.rs
About docs.rs
Badges
Builds
Metadata
Shorthand URLs
Download
Rustdoc JSON
Build queue
Privacy policy
Rust
Rust website
The Book
Standard Library API Reference
Rust by Example
The Cargo Guide
Clippy Documentation
graph
0.1.0
Walker
Required Methods
step
Implementors
In crate graph
graph
Trait
Walker
Copy item path
Source
pub trait Walker<S, Ix =
DefaultIx
> { // Required method fn
step
(&mut self) ->
WalkerState
<S, Ix>; }
Required Methods
§
Source
fn
step
(&mut self) ->
WalkerState
<S, Ix>
Implementors
§
Source
§
impl<'a, D, I, N, E, Ty:
EdgeType
, Ix:
IndexType
>
Walker
<D, Ix> for
DepthFirst
<'a, D, I, N, E, Ty, Ix>
where D:
Measure
+
Copy
+
One
+
Zero
,
Source
§
impl<'a, F, K, I, N, E, Ty:
EdgeType
, Ix:
IndexType
>
Walker
<K, Ix> for
Dijkstra
<'a, F, K, I, N, E, Ty, Ix>
where K:
Measure
+
Copy
+
Ord
, F:
FnMut
(
&E
) -> K,
EdgeIndex
:
From
<
EdgeIndex
<Ix>>,
Source
§
impl<'a, I, N, E, Ty:
EdgeType
, Ix:
IndexType
>
Walker
<
()
, Ix> for
BreadthFirst
<'a, I, N, E, Ty, Ix>