Struct lua52_sys::lua_Debug [] [src]

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 linedefined: c_int,
    pub lastlinedefined: c_int,
    pub nups: c_uchar,
    pub nparams: c_uchar,
    pub isvararg: c_char,
    pub istailcall: c_char,
    pub short_src: [c_char; 60],
}

Fields

event: c_int name: *const c_char namewhat: *const c_char what: *const c_char source: *const c_char currentline: c_int linedefined: c_int lastlinedefined: c_int nups: c_uchar nparams: c_uchar isvararg: c_char istailcall: c_char short_src: [c_char; 60]

Trait Implementations

impl Default for lua_Debug
[src]

fn default() -> lua_Debug

Returns the "default value" for a type. Read more