Iterator over adjacent edges This collects edges into a Vec to avoid lifetime issues with redb.
| 176 | /// |
| 177 | /// This collects edges into a Vec to avoid lifetime issues with redb. |
| 178 | pub struct AdjIterator { |
| 179 | edges: Vec<SerializedGraphEdge>, |
| 180 | index: usize, |
| 181 | } |
| 182 | |
| 183 | impl AdjIterator { |
| 184 | /// Create a new adjacency iterator from a vector of edges |
nothing calls this directly
no outgoing calls
no test coverage detected