Trait feature_check::expr::Calculable [−][src]
pub trait Calculable: Debug {
fn get_value(
&self,
features: &HashMap<String, String>
) -> Result<CalcResult, Box<dyn Error>>;
}Expand description
An object that may be evaluated and provide a result.
