Enum expression::ExpressionError [] [src]

pub enum ExpressionError {
    DivByZero,
    InvalidVariable,
    InvalidOperation,
}

Variants

In case of division by zero.

In case an invalid variable in references from the expression.

In case of an invalid operation.

Trait Implementations

impl Debug for ExpressionError
[src]

Formats the value using the given formatter.

impl Eq for ExpressionError
[src]

impl PartialEq for ExpressionError
[src]

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

This method tests for !=.