pub type NomChildren<C> = Vec<(Range<usize>, C)>;
The children a nom parser produces: slice-relative ranges plus the context each child carries into the next round.
pub struct NomChildren<C> { /* private fields */ }