mun_runtime/
garbage_collector.rs

1use mun_memory::gc;
2
3/// Defines the garbage collector used by the `Runtime`.
4pub type GarbageCollector = gc::MarkSweep<gc::NoopObserver<gc::Event>>;
5
6pub type GcRootPtr = gc::GcRootPtr<GarbageCollector>;