pub trait System { // Provided methods fn tick(&mut self) { ... } fn dispatch(&mut self, _data: Box<dyn Any>) { ... } }