pub struct DebugInfo {
pub pc_spans: Vec<PcSpan>,
pub local_bindings: Vec<BindingDebugInfo>,
pub free_names: Vec<String>,
}Fields§
§pc_spans: Vec<PcSpan>§local_bindings: Vec<BindingDebugInfo>Parameters (this first for methods) then lets, strictly increasing
by slot. Empty for main, whose bindings are the globals.
free_names: Vec<String>Captured names aligned with GcClosure.free / OpGetFree indices.
Implementations§
Trait Implementations§
impl Eq for DebugInfo
impl StructuralPartialEq for DebugInfo
Auto Trait Implementations§
impl Freeze for DebugInfo
impl RefUnwindSafe for DebugInfo
impl Send for DebugInfo
impl Sync for DebugInfo
impl Unpin for DebugInfo
impl UnsafeUnpin for DebugInfo
impl UnwindSafe for DebugInfo
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