[][src]Trait bevy_ecs::ThreadLocalSystemFn

pub trait ThreadLocalSystemFn: Send + Sync + 'static {
    fn run(&mut self, world: &mut World, resource: &mut Resources);
}

A thread local system function

Required methods

fn run(&mut self, world: &mut World, resource: &mut Resources)

Loading content...

Implementors

impl<F> ThreadLocalSystemFn for F where
    F: FnMut(&mut World, &mut Resources) + Send + Sync + 'static, 
[src]

Loading content...