[][src]Trait legion_systems::schedule::Schedulable

pub trait Schedulable: Runnable + Send + Sync { }

Empty trait which defines a System as schedulable by the dispatcher - this requires that the type is both Send and Sync.

This is automatically implemented for all types that implement Runnable which meet the requirements.

Implementors

impl<T> Schedulable for T where
    T: Runnable + Send + Sync
[src]

Loading content...