It should take a more generic error (with `Into` etc.) It ends up requiring code like: ```rs fn validate_inputs_for_property( p: &ParameterValues, ) -> Result<(), Box<dyn std::error::Error + 'static>> { validate_inputs(p).map_err(Into::into) } ```
It should take a more generic error (with
Intoetc.)It ends up requiring code like: