Trait starbase::System

source ·
pub trait System: Debug + Send + Sync {
    // Required method
    fn run<'life0, 'async_trait>(
        &'life0 self,
        states: States,
        resources: Resources,
        emitters: Emitters
    ) -> Pin<Box<dyn Future<Output = SystemResult> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait;
}

Required Methods§

source

fn run<'life0, 'async_trait>( &'life0 self, states: States, resources: Resources, emitters: Emitters ) -> Pin<Box<dyn Future<Output = SystemResult> + Send + 'async_trait>>where Self: 'async_trait, 'life0: 'async_trait,

Implementors§