pub trait ExclusiveSystem: 'static + Send + Sync {
    fn name(&self) -> Cow<'static, str>;
    fn run(&mut self, world: &mut World);
    fn initialize(&mut self, world: &mut World);
    fn check_change_tick(&mut self, change_tick: u32);
}

Required Methods

Implementors