Struct td_rlua::lua_tables::LuaTable [] [src]

pub struct LuaTable { /* fields omitted */ }

Represents a table stored in the Lua context.

Loading this type mutably borrows the Lua context.

Methods

impl LuaTable
[src]

Destroys the LuaTable and returns its inner Lua context. Useful when it takes Lua by value.

Iterates over the elements inside the table.

Loads a value in the table given its index.

Inserts or modifies an elements of the table.

Inserts or modifies an elements of the table.

Trait Implementations

impl LuaRead for LuaTable
[src]

Reads the data from Lua at a given position.

Reads the data from Lua.

Reads the data from Lua at a given position.

impl Drop for LuaTable
[src]

A method called when the value goes out of scope. Read more