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§

source

fn into_system_set(self) -> Self::Set

Implementors§

source§

impl<Marker, F> IntoSystemSet<(IsExclusiveFunctionSystem, Marker)> for Fwhere F: ExclusiveSystemParamFunction<Marker>,

source§

impl<Marker, F> IntoSystemSet<(IsFunctionSystem, Marker)> for Fwhere F: SystemParamFunction<Marker>,

source§

impl<S: SystemSet> IntoSystemSet<()> for S

§

type Set = S