pub type InternedSystemSet = Interned<dyn SystemSet>;
Expand description
A shorthand for Interned<dyn SystemSet>
.
Aliased Type§
struct InternedSystemSet(pub &'static dyn SystemSet);
Fields§
§0: &'static dyn SystemSet
Trait Implementations§
Source§impl Schedulable for InternedSystemSet
impl Schedulable for InternedSystemSet
Source§type Metadata = GraphInfo
type Metadata = GraphInfo
Additional data used to configure independent scheduling. Stored in
ScheduleConfig
.Source§type GroupMetadata = Chain
type GroupMetadata = Chain
Additional data used to configure a schedulable group. Stored in
ScheduleConfigs
.Source§fn into_config(self) -> ScheduleConfig<Self>
fn into_config(self) -> ScheduleConfig<Self>
Initializes a configuration from this node.