Trait specs::RunNow [] [src]

pub trait RunNow<'a> {
    fn run_now(&mut self, res: &'a Resources);
}

Trait for fetching data and running systems. Automatically implemented for systems.

Required Methods

Runs the system now.

Panics

Panics if the system tries to fetch resources which are borrowed in an incompatible way already (tries to read from a resource which is already written to or tries to write to a resource which is read from).

Implementors