pub trait SyncPlatform: Platform {
    // Required method
    fn run(&mut self, system: Box<dyn System>);
}
Expand description

A platform which can be run synchronously.

Required Methods§

source

fn run(&mut self, system: Box<dyn System>)

Run the given system within this platform.

Implementors§