pub enum UnstructuredNode {
    Token(Token),
    Sqrt(UnstructuredNodeList),
    Fraction(UnstructuredNodeListUnstructuredNodeList),
    Parentheses(UnstructuredNodeList),
    Power(UnstructuredNodeList),
    FunctionCall(FunctionVec<UnstructuredNodeList>),
}
Expand description

An unstructured node is one which can be inputted by the user. Unstructured nodes have as little structure as possible - for example, “2+3*5” is represented as a flat list of tokens, with no respect for precedence.

Variants

Token(Token)

Sqrt(UnstructuredNodeList)

Fraction(UnstructuredNodeListUnstructuredNodeList)

Parentheses(UnstructuredNodeList)

Power(UnstructuredNodeList)

FunctionCall(FunctionVec<UnstructuredNodeList>)

Implementations

Creates a new UnstructuredNode::FunctionCall given a function.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Computes the layout for a node tree, converting it into a set of glyphs at particular locations. Read more

Given a navigation path, returns the node from following that path, and the index into that node. The navigation path will always terminate on an unstructured node list, so the final index in the path will be an index into the unstructured node list’s items. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.