Skip to main content

luaur_vm/records/
lua_l_reg.rs

1//! Generated skeleton item.
2//! Node: `cxx:Record:Luau.VM:VM/include/lualib.h:11:lua_l_reg`
3//! Source: `VM/include/lualib.h`
4//! Graph edges:
5//! - declared_by: source_file VM/include/lualib.h
6//! - source_includes:
7//!   - includes -> source_file VM/include/lua.h
8//! - incoming:
9//!   - declares <- source_file VM/include/lualib.h
10//!   - type_ref <- type_alias luaL_Reg (VM/include/lualib.h)
11//! - outgoing:
12//!   - type_ref -> type_alias luaL_Reg (VM/include/lualib.h)
13//!   - type_ref -> type_alias lua_CFunction (VM/include/lua.h)
14//!   - translates_to -> rust_item luaL_Reg
15
16#[derive(Debug, Clone, Copy)]
17pub struct LuaLReg {
18    pub name: *const core::ffi::c_char,
19    pub func: crate::type_aliases::lua_c_function::lua_CFunction,
20}