pub struct CallFrame {
pub function: Rc<Function>,
pub stack: Vec<Rc<RefCell<Value>>>,
pub idx: Address,
pub dst: Option<Location>,
pub globals: Rc<RefCell<HashMap<String, Rc<RefCell<Value>>>>>,
}Fields§
§function: Rc<Function>§stack: Vec<Rc<RefCell<Value>>>§idx: Address§dst: Option<Location>§globals: Rc<RefCell<HashMap<String, Rc<RefCell<Value>>>>>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 !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