mirror of
https://github.com/lune-org/lune.git
synced 2025-04-04 10:30:54 +01:00
fix: remove unneeded with_table
builder method for TableBuilder
This commit is contained in:
parent
421d9f08b3
commit
8d5854af3a
1 changed files with 0 additions and 9 deletions
|
@ -66,15 +66,6 @@ impl<'lua> TableBuilder<'lua> {
|
|||
self.with_value(key, LuaValue::Function(f))
|
||||
}
|
||||
|
||||
pub fn with_table<K>(self, key: K, table: LuaTable<'lua>) -> LuaResult<Self>
|
||||
where
|
||||
K: IntoLua<'lua>,
|
||||
{
|
||||
self.tab.raw_set(key, table)?;
|
||||
|
||||
Ok(self)
|
||||
}
|
||||
|
||||
pub fn with_metatable(self, table: LuaTable) -> LuaResult<Self> {
|
||||
self.tab.set_metatable(Some(table));
|
||||
Ok(self)
|
||||
|
|
Loading…
Add table
Reference in a new issue