Trait libnoentiendo::systems::BuildableSystem
source · pub trait BuildableSystem<RomRegistry, SystemConfig> {
// Required method
fn build(
roms: RomRegistry,
config: SystemConfig,
platform: Arc<dyn PlatformProvider>
) -> Box<dyn System>;
}
Required Methods§
Object Safety§
This trait is not object safe.
Implementors§
impl BuildableSystem<RomFile, ()> for BasicSystem
impl BuildableSystem<RomFile, ()> for Easy6502System
A factory for the Easy6502 system.
impl BuildableSystem<RomFile, KlausSystemConfig> for KlausSystem
A factory for creating a system that runs Klaus Dormann’s 6502 CPU test suite.