IntoSystemSet

Trait IntoSystemSet 

Source
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

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl<Marker, F> IntoSystemSet<(IsExclusiveFunctionSystem, Marker)> for F

Source§

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

Source§

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

Source§

type Set = S