pub trait RunNow<'a> {
fn run_now(&mut self, res: &'a Resources);
fn setup(&mut self, res: &mut Resources);
fn dispose(self: Box<Self, Global>, res: &mut Resources) { ... }
}
Expand description
Trait for fetching data and running systems. Automatically implemented for systems.