1
2
3
4
5
6
7
use super::*;

#[derive(Debug)]
pub struct MutNodesVisitor<'a, G: Graph> {
    graph: &'a mut G,
    index: usize,
}