pub trait BuildableSystem<RomRegistry, SystemConfig> {
    // Required method
    fn build(
        roms: RomRegistry,
        config: SystemConfig,
        platform: Arc<dyn PlatformProvider>
    ) -> Box<dyn System>;
}

Required Methods§

source

fn build( roms: RomRegistry, config: SystemConfig, platform: Arc<dyn PlatformProvider> ) -> Box<dyn System>

Instantiate this system from the given roms, configuration, and with I/O provided by the given platform provider.

Object Safety§

This trait is not object safe.

Implementors§