pub trait IntoSystemSet<Marker>: Sized {
type Set: SystemSet;
// Required method
fn into_system_set(self) -> Self::Set;
}Expand description
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.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".