wasmtime/runtime/gc/
enabled.rs

1//! The actual implementation of garbage collection, for when the `gc` Cargo
2//! feature is enabled.
3
4mod anyref;
5mod arrayref;
6mod eqref;
7mod externref;
8mod i31;
9mod rooting;
10mod structref;
11
12pub use anyref::*;
13pub use arrayref::*;
14pub use eqref::*;
15pub use externref::*;
16pub use i31::*;
17pub use rooting::*;
18pub use structref::*;