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