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