[][src]Struct lua_rs::ffi::lua::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 linedefined: c_int, pub lastlinedefined: c_int, pub nups: c_uchar, pub nparams: c_uchar, pub isvararg: c_char, pub istailcall: c_char, pub short_src: [c_char; 60], // some fields omitted }

Fields

event: c_intname: *const c_charnamewhat: *const c_charwhat: *const c_charsource: *const c_charcurrentline: c_intlinedefined: c_intlastlinedefined: c_intnups: c_ucharnparams: c_ucharisvararg: c_charistailcall: c_charshort_src: [c_char; 60]

Auto Trait Implementations

impl !Send for lua_Debug

impl !Sync for lua_Debug

Blanket Implementations

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.

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

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

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

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