macro_rules! lua_table_type {
($name:ident < $key:ty , $val:ty >) => { ... };
}
Expand description
Makes wrapper to read table to hash map.
This macro add wrapper struct, because impossible to implement FromLua
to HashMap
because they are from other crates.