mun_runtime 0.4.0

A runtime for hot reloading and invoking Mun from Rust
Documentation
1
2
3
4
5
6
use mun_memory::gc;

/// Defines the garbage collector used by the `Runtime`.
pub type GarbageCollector = gc::MarkSweep<gc::NoopObserver<gc::Event>>;

pub type GcRootPtr = gc::GcRootPtr<GarbageCollector>;