pub trait Optimizer {
    // Required method
    fn optimize(&mut self, commands: &mut Commands<'_, '_>);
}

Required Methods§

source

fn optimize(&mut self, commands: &mut Commands<'_, '_>)

Implementors§