Struct asciimath::Node [] [src]

pub struct Node {
    pub token: Token,
    pub args: Option<VecDeque<Node>>,
}

Fields

Trait Implementations

impl Evaluate for Node
[src]

[src]

Evaluates the node/expression with a given variable scope.

[src]

Evaluates the node/expression without any variables. Read more

impl Debug for Node
[src]

[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for Node

impl Sync for Node