pub struct VMFrameSnapshot {
pub module: String,
pub chunk_id: Chunk,
pub stack_idx: usize,
pub local_idx: usize,
pub pc: usize,
pub next_instr: Option<Vec<u8>>,
}
Fields§
§module: String
§chunk_id: Chunk
§stack_idx: usize
§local_idx: usize
§pc: usize
§next_instr: Option<Vec<u8>>
Trait Implementations§
Auto Trait Implementations§
impl Freeze for VMFrameSnapshot
impl RefUnwindSafe for VMFrameSnapshot
impl Send for VMFrameSnapshot
impl Sync for VMFrameSnapshot
impl Unpin for VMFrameSnapshot
impl UnwindSafe for VMFrameSnapshot
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