1
2
3
pub trait Visitor {
    fn visit<'a>(&mut self, idx: usize, ptr: u64, name: &'a [u8]);
}