pub trait System {
// Required methods
fn name(&self) -> &'static str;
fn run(&mut self, world: &mut World);
fn access(&self) -> Vec<Access>;
}Expand description
Trait-object interface for all system types.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".