pub type lua_Hook = Option<extern "C" fn(L: *mut lua_State, ar: *mut lua_Debug)>;
Type for functions to be called on debug events.
enum lua_Hook { None, Some(extern "C" fn(*mut c_void, *mut lua_Debug)), }
No value.
Some value of type T.
T