#[repr(C)]pub struct lua_Debug {
pub name: *const i8,
pub what: *const i8,
pub source: *const i8,
pub linedefined: i32,
pub currentline: i32,
pub nupvals: u8,
pub nparams: u8,
pub isvararg: i8,
pub short_src: [i8; 256],
pub userdata: *mut c_void,
}Fields§
§name: *const i8§what: *const i8§source: *const i8§linedefined: i32§currentline: i32§nupvals: u8§nparams: u8§isvararg: i8§short_src: [i8; 256]§userdata: *mut c_voidTrait Implementations§
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