Struct glr_parser::glr::SyntaxTreeNode [] [src]

pub struct SyntaxTreeNode {
    pub value: Option<Arc<String>>,
    pub symbol: Arc<String>,
    pub children: Option<VecDeque<Box<SyntaxTreeNode>>>,
}

Fields

Trait Implementations

impl Debug for SyntaxTreeNode
[src]

Formats the value using the given formatter.

impl Clone for SyntaxTreeNode
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Drop for SyntaxTreeNode
[src]

A method called when the value goes out of scope. Read more