#[repr(C)]pub struct lua_Debug {
pub name: *const c_char,
pub what: *const c_char,
pub source: *const c_char,
pub short_src: *const c_char,
pub linedefined: c_int,
pub currentline: c_int,
pub nupvals: u8,
pub nparams: u8,
pub isvararg: c_char,
pub userdata: *mut c_void,
pub ssbuf: [c_char; 256],
}
Available on crate feature
luau
only.Fields§
§name: *const c_char
§what: *const c_char
§source: *const c_char
§short_src: *const c_char
§linedefined: c_int
§currentline: c_int
§nupvals: u8
§nparams: u8
§isvararg: c_char
§userdata: *mut c_void
§ssbuf: [c_char; 256]
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