pub enum Operator {
Show 31 variants RootNode, Add, Sub, Neg, Mul, Div, Mod, Exp, Eq, Neq, Gt, Lt, Geq, Leq, And, Or, Not, Assign, AddAssign, SubAssign, MulAssign, DivAssign, ModAssign, ExpAssign, AndAssign, OrAssign, Tuple, Chain, Const { value: Value, }, VariableIdentifier { identifier: String, }, FunctionIdentifier { identifier: String, },
}
Expand description

An enum that represents operators in the operator tree.

Variants

RootNode

A root node in the operator tree. The whole expression is stored under a root node, as well as each subexpression surrounded by parentheses.

Add

A binary addition operator.

Sub

A binary subtraction operator.

Neg

A unary negation operator.

Mul

A binary multiplication operator.

Div

A binary division operator.

Mod

A binary modulo operator.

Exp

A binary exponentiation operator.

Eq

A binary equality comparator.

Neq

A binary inequality comparator.

Gt

A binary greater-than comparator.

Lt

A binary lower-than comparator.

Geq

A binary greater-than-or-equal comparator.

Leq

A binary lower-than-or-equal comparator.

And

A binary logical and operator.

Or

A binary logical or operator.

Not

A binary logical not operator.

Assign

A binary assignment operator.

AddAssign

A binary add-assign operator.

SubAssign

A binary subtract-assign operator.

MulAssign

A binary multiply-assign operator.

DivAssign

A binary divide-assign operator.

ModAssign

A binary modulo-assign operator.

ExpAssign

A binary exponentiate-assign operator.

AndAssign

A binary and-assign operator.

OrAssign

A binary or-assign operator.

Tuple

An n-ary tuple constructor.

Chain

An n-ary subexpression chain.

Const

Fields

value: Value

The value of the constant.

A constant value.

VariableIdentifier

Fields

identifier: String

The identifier of the variable.

A variable identifier.

FunctionIdentifier

Fields

identifier: String

The identifier of the function.

A function identifier.

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

Formats the value using the given formatter. 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

🔬 This is a nightly-only experimental API. (toowned_clone_into)

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

Converts the given value to a String. 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.