Trait bevy_ecs::schedule::IntoSystemSet
source · pub trait IntoSystemSet<Marker>: Sized {
type Set: SystemSet;
// Required method
fn into_system_set(self) -> Self::Set;
}
Expand description
Types that can be converted into a SystemSet
.
Required Associated Types§
Required Methods§
sourcefn into_system_set(self) -> Self::Set
fn into_system_set(self) -> Self::Set
Converts this instance to its associated SystemSet
type.
Object Safety§
This trait is not object safe.