[][src]Enum evalexpr::Operator

pub enum Operator {
    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,
    },
}

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

A constant value.

Fields of Const

value: Value

The value of the constant.

VariableIdentifier

A variable identifier.

Fields of VariableIdentifier

identifier: String

The identifier of the variable.

FunctionIdentifier

A function identifier.

Fields of FunctionIdentifier

identifier: String

The identifier of the function.

Trait Implementations

impl Clone for Operator[src]

impl PartialEq<Operator> for Operator[src]

impl Debug for Operator[src]

impl Display for Operator[src]

Auto Trait Implementations

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]