1 2 3 4 5 6 7
use fnv::{FnvHashMap, FnvHashSet}; #[derive(Debug)] pub struct Stat<'a> { pub locs: FnvHashSet<usize>, pub children: Option<FnvHashMap<&'a[u8], Stat<'a>>>, }