Iterator over adjacent edges This collects edges into a Vec to avoid lifetime issues with redb.
| 157 | /// |
| 158 | /// This collects edges into a Vec to avoid lifetime issues with redb. |
| 159 | pub struct AdjIterator { |
| 160 | edges: Vec<SerializedGraphEdge>, |
| 161 | index: usize, |
| 162 | } |
| 163 | |
| 164 | impl AdjIterator { |
| 165 | /// Create a new adjacency iterator from a vector of edges |
nothing calls this directly
no outgoing calls
no test coverage detected