pub trait SystemSet: DynHash + Debug + Send + Sync + 'static {
// Required method
fn dyn_clone(&self) -> Box<dyn SystemSet>;
// Provided methods
fn system_type(&self) -> Option<TypeId> { ... }
fn is_anonymous(&self) -> bool { ... }
}Expand description
Types that identify logical groups of systems.
Required Methods§
Provided Methods§
sourcefn system_type(&self) -> Option<TypeId>
fn system_type(&self) -> Option<TypeId>
Returns Some if this system set is a SystemTypeSet.
sourcefn is_anonymous(&self) -> bool
fn is_anonymous(&self) -> bool
Returns true if this system set is an AnonymousSet.