Trait bevy_ecs::system::IntoExclusiveSystem[][src]

pub trait IntoExclusiveSystem<Params, SystemType> {
    fn exclusive_system(self) -> SystemType;
}

Required methods

fn exclusive_system(self) -> SystemType[src]

Loading content...

Implementors

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

impl<S, Params, SystemType> IntoExclusiveSystem<(Params, SystemType), ExclusiveSystemCoerced> for S where
    S: IntoSystem<Params, SystemType>,
    SystemType: System<In = (), Out = ()>, 
[src]

Loading content...