pub type SystemSetConfig = NodeConfig<InternedSystemSet>;
Expand description

A SystemSet with scheduling metadata.

Aliased Type§

struct SystemSetConfig { /* private fields */ }

Trait Implementations§

source§

impl IntoSystemSetConfigs for SystemSetConfig

source§

fn in_set(self, set: impl SystemSet) -> SystemSetConfigs

Add these system sets to the provided set.
source§

fn before<M>(self, set: impl IntoSystemSet<M>) -> SystemSetConfigs

Run before all systems in set.
source§

fn after<M>(self, set: impl IntoSystemSet<M>) -> SystemSetConfigs

Run after all systems in set.
source§

fn run_if<M>(self, condition: impl Condition<M>) -> SystemSetConfigs

Run the systems in this set(s) only if the Condition is true. Read more
source§

fn ambiguous_with<M>(self, set: impl IntoSystemSet<M>) -> SystemSetConfigs

Suppress warnings and errors that would result from systems in these sets having ambiguities (conflicting access but indeterminate order) with systems in set.
source§

fn ambiguous_with_all(self) -> SystemSetConfigs

Suppress warnings and errors that would result from systems in these sets having ambiguities (conflicting access but indeterminate order) with any other system.
source§

fn chain(self) -> SystemSetConfigs

Treat this collection as a sequence of system sets. Read more