Enum everust::EvalError [] [src]

pub enum EvalError {
    Build(String),
    Other(OtherFailure),
    ProgReturnedError(String),
}

Type of errors that can occur when calling eval.

Variants

The string contains the build messages.

Other type of error.

The string contains what was written by the program to stderr.

Trait Implementations

impl Debug for EvalError
[src]

Formats the value using the given formatter.

impl Error for EvalError
[src]

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

A short description of the error. Read more

impl Display for EvalError
[src]

Formats the value using the given formatter. Read more

impl From<OtherError> for EvalError
[src]

Performs the conversion.