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 exnref;
8mod externref;
9mod i31;
10mod rooting;
11mod structref;
12
13pub use anyref::*;
14pub use arrayref::*;
15pub use eqref::*;
16pub use exnref::*;
17pub use externref::*;
18pub use i31::*;
19pub use rooting::*;
20pub use structref::*;