Enum mrusty::MrubyError [] [src]

pub enum MrubyError {
    Cast(String),
    Undef,
    Runtime(String),
    Filetype,
    Io(Error),
}

An enum containing all possbile types of errors.

Variants

type cast error

undefined type error

mruby runtime error

unrecognized file type error

Rust Io error

Trait Implementations

impl Debug for MrubyError
[src]

Formats the value using the given formatter.

impl Display for MrubyError
[src]

Formats the value using the given formatter. Read more

impl Error for MrubyError
[src]

A short description of the error. Read more

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

impl From<Error> for MrubyError
[src]

Performs the conversion.