Trait valence::ecs::schedule::IntoSystemSet
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§
fn 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.