I'm trying to use Petgraph's all_simple_paths()
, but I'm not sure what type annotations are required, the the docs don't give an example. It returns a impl Iterator<Item = TargetColl>
where TargetColl: FromIterator<G::NodeId>
, but I don't know what sort of annotation I should make for that.
for path in algo::all_simple_paths(&graph, x, y, 0, None) {}
error[E0282]: type annotations needed
--> lib.rs:10:29
|
10 | for path in algo::all_simple_paths(&graph, x, y, 0, None) {}
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the element type for this iterator is not specified
It should be enough to use
Here's a working example: