pub trait TextProvider<I>where I: AsRef<[u8]>,{ type I: Iterator<Item = I>; // Required method fn text(&mut self, node: Node<'_>) -> Self::I; }