Expand description
#![no_std] bindings to Lua 5.4.
Modules§
- Definitions for FFI.
- Guide for handling Lua errors.
- Prelude that re-exports useful things, but prepends
Luaorlua_to them to prevent name clashes.
Macros§
- Raise a formatted error with
luaL_error. - Create a
Librarywith a more understandable syntax. - Push a formatted string with
lua_pushfstring.
Structs§
- List of string options to be used with
Thread::check_option. - Data structure that represents a Lua coroutine.
- Helper structure for
lua_getinfo. - List of registered C functions to be used with
Thread::new_lib. - Data structure that represents a main Lua thread.
- Context for invalidating pointers that may be freed during garbage collection.
- Lua thread wrapper that’s used by
Luaand associated structures.
Enums§
- Lua garbage collection mode setup information.
Functions§
- Panic function that’s similar to the panic function defined in
lauxlib.h.