Expand description
Lua error handling.
This module provides the Error type returned by all fallible mlua operations, together
with extension traits for adapting Rust errors for use within Lua.
Enums§
- Error
- Error type returned by
mluamethods.
Traits§
- Error
Context - Provides the
contextmethod forErrorandResult<T, Error>. - External
Error - Trait for converting
std::error::Errorinto LuaError. - External
Result - Trait for converting
std::result::Resultinto LuaResult.
Type Aliases§
- Result
- A specialized
Resulttype used bymlua’s API.