Type Alias moonshine_save::save::SavePipeline
source · pub type SavePipeline = SystemConfigs;Expand description
A collection of systems (SystemConfigs) which perform the save process.
Aliased Type§
enum SavePipeline {
NodeConfig(NodeConfig<Box<dyn System<Out = (), In = ()>>>),
Configs {
configs: Vec<NodeConfigs<Box<dyn System<Out = (), In = ()>>>>,
collective_conditions: Vec<Box<dyn ReadOnlySystem<Out = bool, In = ()>>>,
chained: Chain,
},
}