pub type ItemG<'a, G> = Item<'a, TagG<'a, G>>;Expand description
Item type for generator G.
Aliased Type§
pub enum ItemG<'a, G> {
PlainText(LocatedSpan<&'a str, usize>),
Element(Vec<Tag<'a, <G as Generator<'a>>::Convertor>>, Vec<Item<'a, Tag<'a, <G as Generator<'a>>::Convertor>>>),
}