[][src]Enum mlua::Error

pub enum Error {
    SyntaxError {
        message: StdString,
        incomplete_input: bool,
    },
    RuntimeError(StdString),
    MemoryError(StdString),
    GarbageCollectorError(StdString),
    RecursiveMutCallback,
    CallbackDestructed,
    StackError,
    BindError,
    ToLuaConversionError {
        from: &'static str,
        to: &'static str,
        message: Option<StdString>,
    },
    FromLuaConversionError {
        from: &'static str,
        to: &'static str,
        message: Option<StdString>,
    },
    CoroutineInactive,
    UserDataTypeMismatch,
    UserDataBorrowError,
    UserDataBorrowMutError,
    MismatchedRegistryKey,
    CallbackError {
        traceback: StdString,
        cause: Rc<Error>,
    },
    ExternalError(Rc<dyn StdError>),
}

Error type returned by mlua methods.

Variants

SyntaxError

Syntax error while parsing Lua source code.

Fields of SyntaxError

message: StdString

The error message as returned by Lua.

incomplete_input: bool

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.

RuntimeError(StdString)

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).

MemoryError(StdString)

Lua memory error, aka LUA_ERRMEM

The Lua VM returns this error when the allocator does not return the requested memory, aka it is an out-of-memory error.

GarbageCollectorError(StdString)

Lua garbage collector error, aka LUA_ERRGCMM.

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

RecursiveMutCallback

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

This is an error because a mutable callback can only be borrowed mutably once.

CallbackDestructed

Either a callback or a userdata method has been called, but the callback or userdata has been destructed.

This can happen either due to to being destructed in a previous __gc, or due to being destructed from exiting a Lua::scope call.

StackError

Not enough stack space to place arguments to Lua functions or return values from callbacks.

Due to the way mlua works, it should not be directly possible to run out of stack space during normal use. The only way that this error can be triggered is if a Function is called with a huge number of arguments, or a rust callback returns a huge number of return values.

BindError

Too many arguments to Function::bind

ToLuaConversionError

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

Fields of ToLuaConversionError

from: &'static str

Name of the Rust type that could not be converted.

to: &'static str

Name of the Lua type that could not be created.

message: Option<StdString>

A message indicating why the conversion failed in more detail.

FromLuaConversionError

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

Fields of FromLuaConversionError

from: &'static str

Name of the Lua type that could not be converted.

to: &'static str

Name of the Rust type that could not be created.

message: Option<StdString>

A string containing more detailed error information.

CoroutineInactive

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.

UserDataTypeMismatch

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.

UserDataBorrowError

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.

UserDataBorrowMutError

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.

MismatchedRegistryKey

A RegistryKey produced from a different Lua state was used.

CallbackError

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

Fields of CallbackError

traceback: StdString

Lua call stack backtrace.

cause: Rc<Error>

Original error returned by the Rust code.

ExternalError(Rc<dyn StdError>)

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]

pub fn external<T: Into<Box<dyn StdError>>>(err: T) -> Error[src]

Trait Implementations

impl Clone for Error[src]

impl Debug for Error[src]

impl Display for Error[src]

impl Error for Error[src]

impl From<AddrParseError> for Error[src]

impl From<Error> for Error[src]

impl From<Utf8Error> for Error[src]

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

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

Auto Trait Implementations

impl !RefUnwindSafe for Error

impl !Send for Error

impl !Sync for Error

impl Unpin for Error

impl !UnwindSafe for Error

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.