Skip to main content

runmat_gc_api/
lib.rs

1#![forbid(unsafe_op_in_unsafe_fn)]
2
3mod handle;
4mod root;
5mod trace;
6
7pub use handle::GcHandle;
8pub use root::{GcRoot, RootId, RootInfo, RootScannerStats};
9pub use trace::{Trace, Tracer};