pub trait EvolutionaryAlgo { // Provided methods fn run_epoch(&mut self) { ... } fn run(&mut self) -> Option<OptimizationResult> { ... } }