Struct rlua_lua51_sys::bindings::lua_Debug
source · [−]#[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],
pub i_ci: c_int,
}
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]
i_ci: c_int
Trait Implementations
Auto Trait Implementations
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
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more