Type Alias SystemConfigs
pub type SystemConfigs = NodeConfigs<Box<dyn System<In = (), Out = ()>>>;Expand description
A collection of SystemConfig.
Aliased Type§
pub 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,
},
}