pub struct CallFrame {
pub return_ip: usize,
pub locals_base: usize,
pub fn_name: String,
}Expand description
A saved call frame for nested function calls.
Fields§
§return_ip: usizeThe return instruction pointer.
locals_base: usizeThe base of the local variable array for this frame.
fn_name: StringName of the function being called (for diagnostics).
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for CallFrame
impl RefUnwindSafe for CallFrame
impl Send for CallFrame
impl Sync for CallFrame
impl Unpin for CallFrame
impl UnsafeUnpin for CallFrame
impl UnwindSafe for CallFrame
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