Enum evaltrees::ast::Op[][src]

pub enum Op {
    Add,
    App,
    Cons,
    Div,
    Mod,
    Mul,
    Sub,
}

A binary operator.

Variants

Addition.

Function application.

List construction.

Division.

Modulus.

Multiplication.

Subtraction.

Trait Implementations

impl Clone for Op
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for Op
[src]

impl Debug for Op
[src]

Formats the value using the given formatter. Read more

impl Display for Op
[src]

Formats the value using the given formatter. Read more

impl PartialEq for Op
[src]

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

This method tests for !=.

Auto Trait Implementations

impl Send for Op

impl Sync for Op