pub trait IntoSystemSet<M> {
// Required method
fn into_system_set(self) -> Vec<Box<dyn System>>;
}Expand description
Converts a tuple of systems into a Vec<Box<dyn System>> so they can be
registered together with App::add_systems.
Required Methods§
fn into_system_set(self) -> Vec<Box<dyn System>>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".