pub type lua_Continuation = Option<unsafe extern "C" fn(L: *mut lua_State, status: c_int) -> c_int>;
enum lua_Continuation { None, Some(unsafe extern "C" fn(_: *mut lua_State, _: i32) -> i32), }
No value.
Some value of type T.
T