pub type JobParameterInputValues = HashMap<String, ExprValue>;Expand description
Input parameter values from the user (name โ value).
Values are ExprValue so callers can pass native types directly:
- CLI callers pass
ExprValue::String("42".into())for everything and letpreprocess_job_parameterscoerce to the target type. - Library callers can pass typed values like
ExprValue::Int(42)orExprValue::ListInt(vec![1, 2, 3])directly.
Aliased Typeยง
pub struct JobParameterInputValues { /* private fields */ }