Enum mrusty::MrubyError
[−]
[src]
pub enum MrubyError {
Cast(String),
Undef,
Runtime(String),
Filetype,
Io(Error),
}An enum containing all possbile types of errors.
Variants
Cast(String)type cast error
Undefundefined type error
Runtime(String)mruby runtime error
Filetypeunrecognized file type error
Io(Error)Rust Io error
Trait Implementations
impl Debug for MrubyError[src]
impl Display for MrubyError[src]
impl Error for MrubyError[src]
fn description(&self) -> &str
A short description of the error. Read more
fn cause(&self) -> Option<&Error>1.0.0
The lower-level cause of this error, if any. Read more
impl From<Error> for MrubyError[src]
fn from(err: Error) -> MrubyError
Performs the conversion.