use modules::Module; use toml::Table; pub struct LuaModule { } impl LuaModule { pub fn new (_: &Table) -> Box { Box::new(LuaModule {}) } } impl Module for LuaModule {}