Enum rlua::Error [] [src]

pub enum Error {
    SyntaxError {
        message: String,
        incomplete_input: bool,
    },
    RuntimeError(String),
    GarbageCollectorError(String),
    RecursiveCallbackError,
    ExpiredUserData,
    ToLuaConversionError {
        from: &'static str,
        to: &'static str,
        message: Option<String>,
    },
    FromLuaConversionError {
        from: &'static str,
        to: &'static str,
        message: Option<String>,
    },
    CoroutineInactive,
    UserDataTypeMismatch,
    UserDataBorrowError,
    UserDataBorrowMutError,
    CallbackError {
        traceback: String,
        cause: Arc<Error>,
    },
    ExternalError(Arc<StdError + Send + Sync>),
}

Error type returned by rlua methods.

Variants

Syntax error while parsing Lua source code.

Fields of SyntaxError

The error message as returned by Lua.

true if the error can likely be fixed by appending more input to the source code.

This is useful for implementing REPLs as they can query the user for more input if this is set.

Lua runtime error, aka LUA_ERRRUN.

The Lua VM returns this error when a builtin operation is performed on incompatible types. Among other things, this includes invoking operators on wrong types (such as calling or indexing a nil value).

Lua garbage collector error, aka LUA_ERRGCMM.

The Lua VM returns this error when there is an error running a __gc metamethod.

A callback has triggered Lua code that has called the same callback again.

This is an error because rlua callbacks are FnMut and thus can only be mutably borrowed once.

Lua code has accessed a UserData value that was already garbage collected

This can happen when a UserData has a custom __gc metamethod, this method resurrects the UserData, and then the UserData is subsequently accessed.

A Rust value could not be converted to a Lua value.

Fields of ToLuaConversionError

Name of the Rust type that could not be converted.

Name of the Lua type that could not be created.

A message indicating why the conversion failed in more detail.

A Lua value could not be converted to the expected Rust type.

Fields of FromLuaConversionError

Name of the Lua type that could not be converted.

Name of the Rust type that could not be created.

A string containing more detailed error information.

Thread::resume was called on an inactive coroutine.

A coroutine is inactive if its main function has returned or if an error has occured inside the coroutine.

Thread::status can be used to check if the coroutine can be resumed without causing this error.

An AnyUserData is not the expected type in a borrow.

This error can only happen when manually using AnyUserData, or when implementing metamethods for binary operators. Refer to the documentation of UserDataMethods for details.

An AnyUserData immutable borrow failed because it is already borrowed mutably.

This error can occur when a method on a UserData type calls back into Lua, which then tries to call a method on the same UserData type. Consider restructuring your API to prevent these errors.

An AnyUserData mutable borrow failed because it is already borrowed.

This error can occur when a method on a UserData type calls back into Lua, which then tries to call a method on the same UserData type. Consider restructuring your API to prevent these errors.

A Rust callback returned Err, raising the contained Error as a Lua error.

Fields of CallbackError

Lua call stack backtrace.

Original error returned by the Rust code.

A custom error.

This can be used for returning user-defined errors from callbacks.

Returning Err(ExternalError(...)) from a Rust callback will raise the error as a Lua error. The Rust code that originally invoked the Lua code then receives a CallbackError, from which the original error (and a stack traceback) can be recovered.

Methods

impl Error
[src]

[src]

Trait Implementations

impl Debug for Error
[src]

[src]

Formats the value using the given formatter.

impl Clone for Error
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Display for Error
[src]

[src]

Formats the value using the given formatter. Read more

impl StdError for Error
[src]

[src]

A short description of the error. Read more

[src]

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

impl<'lua> ToLua<'lua> for Error
[src]

[src]

Performs the conversion.

impl<'lua> FromLua<'lua> for Error
[src]

[src]

Performs the conversion.