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§

source

type Set: SystemSet

The type of SystemSet this instance converts into.

Required Methods§

source

fn into_system_set(self) -> Self::Set

Converts this instance to its associated SystemSet type.

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<Marker, F> IntoSystemSet<(IsExclusiveFunctionSystem, Marker)> for F
where Marker: 'static, F: ExclusiveSystemParamFunction<Marker>,

source§

impl<Marker, F> IntoSystemSet<(IsFunctionSystem, Marker)> for F
where Marker: 'static, F: SystemParamFunction<Marker>,

source§

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

§

type Set = S