[][src]Struct pm_rlua::lua_Debug

#[repr(C)]pub struct lua_Debug {
    pub event: i32,
    pub name: *const i8,
    pub namewhat: *const i8,
    pub what: *const i8,
    pub source: *const i8,
    pub currentline: i32,
    pub linedefined: i32,
    pub lastlinedefined: i32,
    pub nups: u8,
    pub nparams: u8,
    pub isvararg: i8,
    pub istailcall: i8,
    pub short_src: [i8; 60],
}

Fields

event: i32name: *const i8namewhat: *const i8what: *const i8source: *const i8currentline: i32linedefined: i32lastlinedefined: i32nups: u8nparams: u8isvararg: i8istailcall: i8short_src: [i8; 60]

Trait Implementations

impl Default for lua_Debug[src]

Auto Trait Implementations

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.