wasmtime 42.0.2

High-level API to expose the Wasmtime runtime
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use crate::runtime::vm::VMStoreContext;
use crate::runtime::vm::traphandlers::CallThreadState;

/// A WebAssembly Coredump
#[derive(Debug)]
pub enum CoreDumpStack {}

impl CallThreadState {
    pub(super) fn capture_coredump(
        &self,
        _ctx: *const VMStoreContext,
        _trap_pc_and_fp: Option<(usize, usize)>,
    ) -> Option<CoreDumpStack> {
        None
    }
}