#[repr(C)]pub struct lua_Debug {
pub event: c_int,
pub name: *const c_char,
pub namewhat: *const c_char,
pub what: *const c_char,
pub source: *const c_char,
pub currentline: c_int,
pub nups: c_int,
pub linedefined: c_int,
pub lastlinedefined: c_int,
pub short_src: [c_char; 60],
/* private fields */
}Available on crate features
lua51 or luajit only.Fields§
§event: c_int§name: *const c_char§namewhat: *const c_char§what: *const c_char§source: *const c_char§currentline: c_int§nups: c_int§linedefined: c_int§lastlinedefined: c_int§short_src: [c_char; 60]