Struct rusty_peg::tree::ParseTree
[−]
[src]
pub struct ParseTree<K> {
pub kind: K,
pub span: Span,
pub child: Option<Rc<ParseTree<K>>>,
pub sibling: Option<Rc<ParseTree<K>>>,
}Fields
kind: K
span: Span
child: Option<Rc<ParseTree<K>>>
sibling: Option<Rc<ParseTree<K>>>