#[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]
Auto Trait Implementations§
impl Freeze for lua_Debug
impl RefUnwindSafe for lua_Debug
impl !Send for lua_Debug
impl !Sync for lua_Debug
impl Unpin for lua_Debug
impl UnwindSafe for lua_Debug
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more