wasmtime 44.0.0

High-level API to expose the Wasmtime runtime
Documentation
1
2
3
4
5
6
7
8
9
10
11
pub fn lazy_per_thread_init() {
    // unused on Windows
}

cfg_if::cfg_if! {
    if #[cfg(has_native_signals)] {
        pub use super::vectored_exceptions::{TrapHandler, SignalHandler };
    } else {
        pub enum SignalHandler {}
    }
}