wasmtime/runtime/gc/
enabled.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! The actual implementation of garbage collection, for when the `gc` Cargo
//! feature is enabled.

mod anyref;
mod arrayref;
mod eqref;
mod externref;
mod i31;
mod rooting;
mod structref;

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