Expand description
Lua string handling.
This module provides types for working with Lua strings from Rust.
§Main Types
LuaString- A handle to an internal Lua string (may not be valid UTF-8).BorrowedStr- A borrowed&strview of a Lua string that holds a strong reference to the Lua state.BorrowedBytes- A borrowed&[u8]view of a Lua string that holds a strong reference to the Lua state.
Structs§
- Borrowed
Bytes - A borrowed byte slice (
&[u8]) that holds a strong reference to the Lua state. - Borrowed
Str - A borrowed string (
&str) that holds a strong reference to the Lua state. - LuaString
- Handle to an internal Lua string.