#![allow(missing_docs)]
use crate::{GcHeap, GcRuntime};
use anyhow::Result;
pub fn default_gc_runtime() -> impl GcRuntime {
DisabledCollector
}
struct DisabledCollector;
unsafe impl GcRuntime for DisabledCollector {
fn new_gc_heap(&self) -> Result<Box<dyn GcHeap>> {
unreachable!()
}
}
pub enum VMExternRef {}