pub trait Config<T> { // Required methods fn expression_function(&self) -> Box<dyn Fn(T) -> ExpResult + 'static>; fn name(&self) -> String; }