pub trait Expression { // Required method fn evaluate( &self, context: &dyn EvaluationContext, ) -> Result<Box<dyn Any + Send + Sync + 'static>, Box<dyn Error + Send + Sync + 'static>>; }
Calculate expression result with context
context
The value of this expression