Enum repl::ReplErr [] [src]

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

ReplErr variants

Variants

Read(String)

An error during Read.

Eval(String)

An error during Eval.

Print(String)

An error during Print.

Trait Implementations

impl Debug for ReplErr
[src]

fn fmt(&self, __arg_0: &mut Formatter) -> Result

Formats the value using the given formatter.

impl Display for ReplErr
[src]

fn fmt(&self, f: &mut Formatter) -> Result

Formats the value using the given formatter.