mun_runtime 0.4.0

A runtime for hot reloading and invoking Mun from Rust
Documentation
1
2
3
4
5
use mun_runtime::Runtime;

// Ensures the [`Runtime`] is Send
trait IsSend: Send {}
impl IsSend for Runtime {}