pub struct VmState {
pub frames: Vec<Frame>,
pub stack: Vec<Value>,
pub status: Status,
}Expand description
All execution state. Plain data: Clone = snapshot (time travel).
Fields§
§frames: Vec<Frame>§stack: Vec<Value>§status: StatusImplementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for VmState
impl RefUnwindSafe for VmState
impl Send for VmState
impl Sync for VmState
impl Unpin for VmState
impl UnsafeUnpin for VmState
impl UnwindSafe for VmState
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