Enum qoqo_calculator::CalculatorError[][src]

pub enum CalculatorError {
    NotConvertable,
    FloatSymbolicNotConvertable {
        val: String,
    },
    ComplexSymbolicNotConvertable {
        val: CalculatorComplex,
    },
    ComplexCanNotBeConvertedToFloat {
        val: CalculatorComplex,
    },
    ParsingError {
        msg: &'static str,
    },
    NotImplementedError {
        fct: &'static str,
    },
    FunctionNotFound {
        fct: String,
    },
    VariableNotSet {
        name: String,
    },
    UnexpectedEndOfExpression,
    DivisionByZero,
    NoValueReturnedParsing,
    NotEnoughFunctionArguments,
}
Expand description

Define custom errors for Calculator.

Variants

NotConvertable

An input cannot be converted to CalculatorFloat

FloatSymbolicNotConvertable

A symbolic input cannot be converted to CalculatorFloat

Fields of FloatSymbolicNotConvertable

val: String

Value that can not be converted

ComplexSymbolicNotConvertable

A symbolic input cannot be converted to CalculatorComplex

Fields of ComplexSymbolicNotConvertable

val: CalculatorComplex

Value that cannot be converted

ComplexCanNotBeConvertedToFloat

A complex value cannot be converted to float because imaginary part is not zero

Fields of ComplexCanNotBeConvertedToFloat

val: CalculatorComplex

Value of the CalculatorComplex that cannot be converted

ParsingError

Parsing error when using Calculator

Fields of ParsingError

msg: &'static str

Parsing error

NotImplementedError

Function not implemented in Calculator

Fields of NotImplementedError

fct: &'static str

Function that is not implemented

FunctionNotFound

Function not found in Calculator

Fields of FunctionNotFound

fct: String

Name of function that cannot be found

VariableNotSet

A variable is not set

Fields of VariableNotSet

name: String

Name of the variable that is not set

UnexpectedEndOfExpression

Parsed expression ended unexpectedly

DivisionByZero

Trying to divide by zero

NoValueReturnedParsing

A parsed value did not return a value.

NotEnoughFunctionArguments

Not enough function arguments provided in parsed expression.

Trait Implementations

Formats the value using the given formatter. Read more

Formats the value using the given formatter. Read more

The lower-level source of this error, if any. Read more

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

Returns a stack backtrace, if available, of where this error occurred. Read more

👎 Deprecated since 1.42.0:

use the Display impl or to_string()

👎 Deprecated since 1.33.0:

replaced by Error::source, which can support downcasting

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

Performs the conversion.

Performs the conversion.

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.