pub struct VMFrameSnapshot {
pub module: String,
pub chunk_id: Chunk,
pub frame_idx: usize,
pub locals: LocalIndex,
pub pc: usize,
pub next_instr: Option<Vec<u8>>,
}Fields
module: Stringchunk_id: Chunkframe_idx: usizelocals: LocalIndexpc: usizenext_instr: Option<Vec<u8>>Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for VMFrameSnapshot
impl Send for VMFrameSnapshot
impl Sync for VMFrameSnapshot
impl Unpin for VMFrameSnapshot
impl UnwindSafe for VMFrameSnapshot
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more