pub trait Evaluator<Args> { type Output; // Required method fn eval(&self, args: Args) -> Self::Output; }