Type Alias valence::ecs::schedule::SystemConfigs
pub type SystemConfigs = NodeConfigs<Box<dyn System<In = (), Out = ()>>>;
Expand description
A collection of SystemConfig
.
Aliased Type§
enum SystemConfigs {
NodeConfig(NodeConfig<Box<dyn System<In = (), Out = ()>>>),
Configs {
configs: Vec<NodeConfigs<Box<dyn System<In = (), Out = ()>>>>,
collective_conditions: Vec<Box<dyn ReadOnlySystem<In = (), Out = bool>>>,
chained: Chain,
},
}