[][src]Trait bevy::prelude::IntoThreadLocalSystem

pub trait IntoThreadLocalSystem {
    fn thread_local_system(self) -> Box<dyn System + 'static>;
}

Converts Self into a thread local system

Required methods

fn thread_local_system(self) -> Box<dyn System + 'static>

Loading content...

Implementors

impl<F> IntoThreadLocalSystem for F where
    F: ThreadLocalSystemFn
[src]

Loading content...