[][src]Struct luajit2_sys::lua_Debug

#[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_intname: *const c_charnamewhat: *const c_charwhat: *const c_charsource: *const c_charcurrentline: c_intnups: c_intlinedefined: c_intlastlinedefined: c_intshort_src: [c_char; 60]i_ci: c_int

Trait Implementations

impl Clone for lua_Debug[src]

impl Copy for lua_Debug[src]

impl Debug for lua_Debug[src]

Auto Trait Implementations

impl !Send for lua_Debug

impl !Sync for lua_Debug

impl Unpin for lua_Debug

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.