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

Implementors§

§

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

§

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

§

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

§

type Set = S