#[repr(C)]
pub struct lua_Debug {
Show 17 fields 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 srclen: usize, 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 ftransfer: c_ushort, pub ntransfer: c_ushort, pub short_src: [c_char; 60], pub i_ci: *mut CallInfo,
}

Fields

event: c_intname: *const c_charnamewhat: *const c_charwhat: *const c_charsource: *const c_charsrclen: usizecurrentline: c_intlinedefined: c_intlastlinedefined: c_intnups: c_ucharnparams: c_ucharisvararg: c_charistailcall: c_charftransfer: c_ushortntransfer: c_ushortshort_src: [c_char; 60]i_ci: *mut CallInfo

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.