Enum repl::ReplErr [] [src]

pub enum ReplErr {
    Read(String),
    Eval(String),
    Print(String),
}

ReplErr variants

Variants

An error during Read.

An error during Eval.

An error during Print.

Trait Implementations

impl Debug for ReplErr
[src]

Formats the value using the given formatter.

impl Display for ReplErr
[src]

Formats the value using the given formatter. Read more