pub trait Evaluator: Fn(&Context) -> bool { // Required method fn clone_boxed(&self) -> Box<dyn Evaluator + Send + Sync + 'static>; }
Apply memoised state to a context.
source