pub struct DebugFrame {
pub kind: &'static str,
pub location: Option<String>,
pub temps: usize,
}Expand description
One call frame, resolved to a knot/stitch path.
Fields§
§kind: &'static strFrame kind: root / function / tunnel / thread / external / eval.
location: Option<String>Nearest named container for this frame, if resolvable.
temps: usizeNumber of temporary (local) variables in this frame.
Auto Trait Implementations§
impl Freeze for DebugFrame
impl RefUnwindSafe for DebugFrame
impl Send for DebugFrame
impl Sync for DebugFrame
impl Unpin for DebugFrame
impl UnsafeUnpin for DebugFrame
impl UnwindSafe for DebugFrame
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