use MultiThreadedCollector;
use SingleThreadedCollector;
/// The garbage collector type - aliases to either SingleThreadedCollector or MultiThreadedCollector
/// based on the `multi_threaded` feature flag.
pub type Collector = SingleThreadedCollector;
pub type Collector = MultiThreadedCollector;