bevy_compose

Trait AnySystemParamFunction

source
pub trait AnySystemParamFunction:
    Send
    + Sync
    + 'static {
    // Required methods
    fn clone_any(&self) -> Box<dyn AnySystemParamFunction>;
    fn system_set_any(&self) -> Interned<dyn SystemSet>;
    fn init(&self, app: &mut App);
    fn add_any(&self, app: &mut App, after: Vec<Interned<dyn SystemSet>>);
}

Required Methods§

source

fn clone_any(&self) -> Box<dyn AnySystemParamFunction>

source

fn system_set_any(&self) -> Interned<dyn SystemSet>

source

fn init(&self, app: &mut App)

source

fn add_any(&self, app: &mut App, after: Vec<Interned<dyn SystemSet>>)

Implementors§