pub type NativeFn = fn(&mut LuaState) -> Result<usize, LuaError>;Expand description
Type alias for a Lua native function implementation in Rust.
TODO(port): align with the canonical lua_CFunction / NativeFn type defined
in lua-types once that crate stabilises.