pub struct Debug {
pub lineinfo: Vec<Int>,
pub localvars: Vec<LocalVar>,
pub upvalues: Vec<String>,
}
Expand description
Optional debugging information for a function.
Fields§
§lineinfo: Vec<Int>
The line number of each bytecode instruction.
localvars: Vec<LocalVar>
The names and scopes of local variables.
upvalues: Vec<String>
The names of upvalues.
Implementations§
Trait Implementations§
impl StructuralPartialEq for Debug
Auto Trait Implementations§
impl Freeze for Debug
impl RefUnwindSafe for Debug
impl Send for Debug
impl Sync for Debug
impl Unpin for Debug
impl UnwindSafe for Debug
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more