wasmtime 24.0.7

High-level API to expose the Wasmtime runtime
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! The actual implementation of garbage collection, for when the `gc` Cargo
//! feature is enabled.

mod anyref;
mod externref;
mod i31;
mod rooting;
mod structref;

pub use anyref::*;
pub use externref::*;
pub use i31::*;
pub use rooting::*;
pub use structref::*;