[][src]Trait async_ecs::dispatcher::run::Run

pub trait Run<'a> {
    pub fn run(&mut self, world: &'a World);
}

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

Required methods

pub fn run(&mut self, world: &'a World)[src]

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).

Loading content...

Implementors

impl<'a, T> Run<'a> for T where
    T: System<'a>, 
[src]

Loading content...