Crate rlua

Source

Modules§

ffi
Low level bindings to Lua 5.4/5.3/5.2/5.1 (including LuaJIT) and Roblox Luau.
prelude

Macros§

chunk

Structs§

AnyUserData
Handle to an internal Lua userdata for any type that implements UserData.
AppDataRef
A wrapper type for an immutably borrowed value from an app data container.
AppDataRefMut
A wrapper type for a mutably borrowed value from an app data container.
Chunk
Returned from Lua::load and is used to finalize loading and executing Lua main chunks.
Debug
Contains information about currently executing Lua code.
DebugNames
DebugSource
DebugStack
Function
Handle to an internal Lua function.
FunctionInfo
Contains information about a function.
HookTriggers
Determines when a hook function will be called by Lua.
LightUserData
A “light” userdata value. Equivalent to an unmanaged raw pointer.
Lua
Top level Lua struct which represents an instance of Lua VM.
LuaOptions
Controls Lua interpreter behavior such as Rust panics handling.
MultiValue
Multiple Lua values used for both argument passing and also for multiple return values.
RegistryKey
An auto generated key into the Lua registry.
Scope
Constructed by the Lua::scope method, allows temporarily creating Lua userdata and callbacks that are not required to be Send or ’static.
StdLib
Flags describing the set of lua standard libraries to load.
String
Handle to an internal Lua string.
Table
Handle to an internal Lua table.
TablePairs
An iterator over the pairs of a Lua table.
TableSequence
An iterator over the sequence part of a Lua table.
Thread
Handle to an internal Lua thread (coroutine).
UserDataMetatable
Handle to a UserData metatable.
UserDataRef
A wrapper type for an immutably borrowed value from a AnyUserData.
UserDataRefMut
A wrapper type for a mutably borrowed value from a AnyUserData.
UserDataRegistry
Handle to registry for userdata methods and metamethods.
Variadic
Wraps a variable number of Ts.
lua_State
A raw Lua state associated with a thread.

Enums§

ChunkMode
Represents chunk mode (text or binary).
DebugEvent
Represents a specific event that triggered the hook.
Error
Error type returned by mlua methods.
GCMode
Mode of the Lua garbage collector (GC).
MetaMethod
Kinds of metamethods that can be overridden.
ThreadStatus
Status of a Lua thread (coroutine).
Value
A dynamically typed Lua value. The String, Table, Function, Thread, and UserData variants contain handle types into the internal Lua state. It is a logic error to mix handle types between separate Lua instances, and doing so will result in a panic.

Traits§

AnyUserDataExt
An extension trait for AnyUserData that provides a variety of convenient functionality.
AsChunk
Trait for types loadable by Lua and convertible to a Chunk
ErrorContext
Provides the context method for Error and Result<T, Error>.
ExternalError
Trait for converting std::error::Error into Lua Error.
ExternalResult
Trait for converting std::result::Result into Lua Result.
FromLua
Trait for types convertible from Value.
FromLuaMulti
Trait for types that can be created from an arbitrary number of Lua values.
IntoLua
Trait for types convertible to Value.
IntoLuaMulti
Trait for types convertible to any number of Lua values.
RluaCompat
TableExt
An extension trait for Tables that provides a variety of convenient functionality.
ToLua
Trait for types convertible to Value.
ToLuaCompat
UserData
Trait for custom userdata types.
UserDataFields
Field registry for UserData implementors.
UserDataMethods
Method registry for UserData implementors.

Type Aliases§

Context
Integer
Type of Lua integer numbers.
Number
Type of Lua floating point numbers.
Result
A specialized Result type used by mlua’s API.
lua_CFunction
Type for native C functions that can be passed to Lua

Derive Macros§

FromLua