Enum hlua::LuaFunctionCallError [] [src]

pub enum LuaFunctionCallError<E> {
    LuaError(LuaError),
    PushError(E),
}

Error that can happen when calling a LuaFunction.

Variants

Error while executing the function.

Error while pushing one of the parameters.

Trait Implementations

impl<E: Debug> Debug for LuaFunctionCallError<E>
[src]

[src]

Formats the value using the given formatter.

impl<E> Display for LuaFunctionCallError<E> where
    E: Display
[src]

[src]

Formats the value using the given formatter. Read more

impl<E> From<LuaError> for LuaFunctionCallError<E>
[src]

[src]

Performs the conversion.

impl<E> Error for LuaFunctionCallError<E> where
    E: Error
[src]

[src]

A short description of the error. Read more

[src]

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

impl Error for LuaFunctionCallError<Void>
[src]

[src]

A short description of the error. Read more

[src]

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